MCP Servers
MCP (Model Context Protocol) Servers authored and maintained by the PulseMCP team. We build reliable servers thoughtfully designed specifically for MCP Client-powered workflows.
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
Maintainer
Works with
Installation
Manual Installation
npx mcp-serversConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
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
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-serversInstall dependencies
Install Node.js dependencies with npm.
npm installBuild the project
Compile the TypeScript/JavaScript source to the build directory.
npm run buildObtain 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.
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"
}
}
}
}Start the weather service manually (optional)
You can also start the service directly from the command line for testing.
npm run start:weatherMCP 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.
MCP Servers Alternatives — Similar Developer Tools Servers
Looking for alternatives to MCP Servers? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
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.
Set Up MCP Servers in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
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.