- Open MCP
Open MCP
Open MCP
A collection of open and useful Model Context Protocol (MCP) servers for AI assistants like Claude.
What are MCPs?
The Model Context Protocol (MCP) is an open standard that allows AI assistants to interact with external tools and data sources. These servers act as bridges between AI models and the outside world, enabling them to access real-time information and perform useful actions.
Installation
To use these MCP servers with Claude for Desktop:
-
Open your Claude for Desktop configuration file:
- Mac:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Mac:
-
Add the following to your configuration file:
{ "mcpServers": { "kanye": { "command": "npx", "args": ["-y", "kanye-mcp"] } } } -
Restart Claude for Desktop
-
You'll see a hammer icon at the bottom of the input field when tools are available
Usage
Once installed, you can ask Claude to use these tools:
- "Can you share a Kanye West quote?"
- "What's something interesting Kanye said?"
Claude will call the appropriate tool and display the result.
Local Development
If you want to contribute or run these servers locally:
-
Clone the repository:
git clone https://github.com/your-username/fun-mcps.git cd fun-mcps -
Set up the Kanye MCP:
cd kanye-mcp npm install -
Build and run:
npm run build node dist/index.js -
Test with the MCP inspector:
npx @modelcontextprotocol/inspector node dist/index.js
Contributing
Contributions are welcome! If you have ideas for fun MCP servers, please:
- Fork the repository
- Create a new directory for your server
- Implement your MCP server in TypeScript
- Add documentation in the README
- Submit a pull request
License
MIT
This project is not affiliated with Claude or Anthropic. MCP servers are independent tools that work with any MCP-compatible client.