I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

claude-mcp-tools
A collection of MCP (Model Context Protocol) servers for extending Claude's capabilities
3 years
Works with Finder
1
Github Watches
1
Github Forks
1
Github Stars
Claude MCP Tools
A collection of Model Context Protocol (MCP) servers for extending Claude's capabilities.
What is MCP?
The Model Context Protocol (MCP) is an open standard developed by Anthropic that enables secure, two-way connections between AI models like Claude and external data sources, APIs, or tools.
MCP provides three main capabilities:
- Tools: Functions that can be called by Claude (with user approval)
- Resources: File-like data that can be read by clients
- Prompts: Pre-written templates that help users accomplish specific tasks
Servers in this Repository
This repository contains the following MCP servers:
- news-search-server: A server that enables Claude to search for and retrieve recent news articles
- wikipedia-server: Allows Claude to search and retrieve content from Wikipedia
- analytics-server: A server for performing data analysis on CSV files
Getting Started
Prerequisites
- Python 3.10 or higher
- Claude Desktop App installed (v1.2.0+)
Installation
- Clone this repository:
git clone https://github.com/henrygabriels/claude-mcp-tools.git
cd claude-mcp-tools
- Set up a virtual environment and install dependencies:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
- Configure Claude Desktop to use these servers by editing your configuration file:
# On macOS
~/Library/Application Support/Claude/claude_desktop_config.json
# On Windows
%APPDATA%\Claude\claude_desktop_config.json
Add the following to your configuration:
{
"mcpServers": {
"news-search": {
"command": "python /absolute/path/to/claude-mcp-tools/news-search-server/server.py"
},
"wikipedia": {
"command": "python /absolute/path/to/claude-mcp-tools/wikipedia-server/server.py"
},
"analytics": {
"command": "python /absolute/path/to/claude-mcp-tools/analytics-server/server.py"
}
}
}
- Restart Claude Desktop
Building Your Own MCP Server
To create your own MCP server, follow these steps:
- Create a new directory for your server
- Create a Python file with your server logic using the MCP SDK
- Define the tools you want to expose
- Add your server to the Claude Desktop configuration
See the official MCP quickstart guide for more details.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Resources
相关推荐
Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.
Confidential guide on numerology and astrology, based of GG33 Public information
A geek-themed horoscope generator blending Bitcoin prices, tech jargon, and astrological whimsy.
Converts Figma frames into front-end code for various mobile frameworks.
Advanced software engineer GPT that excels through nailing the basics.
Therapist adept at identifying core issues and offering practical advice with images.
Discover the most comprehensive and up-to-date collection of MCP servers in the market. This repository serves as a centralized hub, offering an extensive catalog of open-source and proprietary MCP servers, complete with features, documentation links, and contributors.
Micropython I2C-based manipulation of the MCP series GPIO expander, derived from Adafruit_MCP230xx
A unified API gateway for integrating multiple etherscan-like blockchain explorer APIs with Model Context Protocol (MCP) support for AI assistants.
Mirror ofhttps://github.com/agentience/practices_mcp_server
Mirror ofhttps://github.com/bitrefill/bitrefill-mcp-server
Reviews

user_w27LoQCQ
I recently tried "How to Run Both the Client and Server" by CharlieChenyuZhang and it was incredibly insightful. The step-by-step guide made the process seamless and easy to follow. Highly recommended for anyone looking to synchronize their client-server operations efficiently. Check it out here: https://mcp.so/server/mcp-experiment/CharlieChenyuZhang