MCP Servers

v1.0.0Developer Toolsstable

MCP (Model Context Protocol) Servers authored and maintained by the PulseMCP team. We build reliable servers thoughtfully designed specifically for MCP Client-powered workflows.

ai-agent-toolsai-agentsai-agents-frameworkanthropic-claudeawesome
Share:
225
Stars
0
Downloads
0
Weekly
0/5

What is MCP Servers?

MCP Servers is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp (model context protocol) servers authored and maintained by the pulsemcp team. we build reliable servers thoughtfully designed specifically for mcp client-powered workflows.

MCP (Model Context Protocol) Servers authored and maintained by the PulseMCP team. We build reliable servers thoughtfully designed specifically for MCP Client-powered workflows.

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP (Model Context Protocol) Servers authored and maintained

Use Cases

Access curated MCP server collection
Discover reliable server implementations
Find framework-specific servers
fist-maestro

Maintainer

LicenseISC License
Languagejavascript
Versionv1.0.0
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx mcp-servers

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use MCP Servers

The fist-maestro MCP Servers repository provides a curated collection of MCP server implementations authored for use with AI clients like Claude and Cursor. It includes a Weather service that delivers real-time weather queries and 5-day forecasts for multiple cities via OpenWeatherMap, plus a Demo service that illustrates the basic structure and development patterns of MCP servers. Developers use this collection to quickly add weather data capabilities to their AI workflows or to study reference implementations when building their own MCP servers.

Prerequisites

  • Node.js 18+ installed
  • An OpenWeatherMap API key (free tier available at openweathermap.org)
  • An MCP-compatible client such as Claude Desktop or Cursor
  • Git to clone the repository
1

Clone the repository

Clone the mcp-servers repository from GitHub to your local machine.

git clone https://github.com/fist-maestro/mcp-servers.git
cd mcp-servers
2

Install dependencies

Install Node.js dependencies with npm.

npm install
3

Build the project

Compile the TypeScript/JavaScript source to the build directory.

npm run build
4

Obtain an OpenWeatherMap API key

Sign up at openweathermap.org and copy your API key. This is required for the weather service to fetch live data.

5

Configure your MCP client

Add the weather server to your MCP client configuration, pointing to the built index.js file and supplying your API key.

{
  "mcpServers": {
    "weather": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-servers/build/weather/index.js"],
      "env": {
        "OPENWEATHER_API_KEY": "your_api_key_here"
      }
    }
  }
}
6

Start the weather service manually (optional)

You can also start the service directly from the command line for testing.

npm run start:weather

MCP Servers Examples

Client configuration

Claude Desktop configuration for the weather MCP server. Replace the path and API key with your actual values.

{
  "mcpServers": {
    "weather": {
      "command": "node",
      "args": ["/Users/yourname/mcp-servers/build/weather/index.js"],
      "env": {
        "OPENWEATHER_API_KEY": "your_openweathermap_api_key"
      }
    }
  }
}

Prompts to try

Example prompts to use with the weather MCP server once configured.

- "What is the current weather in Tokyo?"
- "Give me a 5-day forecast for New York City and London."
- "Is it going to rain in Sydney this week?"

Troubleshooting MCP Servers

Weather queries return an authentication error

Verify that OPENWEATHER_API_KEY is set correctly in your MCP config env block. New API keys can take up to 2 hours to activate on the free tier.

The build step fails with TypeScript errors

Ensure you are running Node.js 18 or later. Run `node --version` to check. Delete node_modules and run `npm install` again before `npm run build`.

The MCP client cannot find the server binary

Use an absolute path in the `args` field of your config (not a relative path). Confirm the file exists at `build/weather/index.js` after running `npm run build`.

Frequently Asked Questions about MCP Servers

What is MCP Servers?

MCP Servers is a Model Context Protocol (MCP) server that mcp (model context protocol) servers authored and maintained by the pulsemcp team. we build reliable servers thoughtfully designed specifically for mcp client-powered workflows. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install MCP Servers?

Follow the installation instructions on the MCP Servers GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with MCP Servers?

MCP Servers works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is MCP Servers free to use?

Yes, MCP Servers is open source and available under the ISC License license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "mcp-servers": { "command": "npx", "args": ["-y", "mcp-servers"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use MCP Servers?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides