A collection of Model Context Protocol (MCP) servers for extending Claude's capabilities.
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:
This repository contains the following MCP servers:
git clone https://github.com/henrygabriels/claude-mcp-tools.git
cd claude-mcp-tools
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
# 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"
}
}
}
To create your own MCP server, follow these steps:
See the official MCP quickstart guide for more details.
This project is licensed under the MIT License - see the LICENSE file for details.
{
"mcpServers": {
"analytics": {
"env": {},
"args": [
"/absolute/path/to/claude-mcp-tools/analytics-server/server.py"
],
"command": "python"
},
"wikipedia": {
"env": {},
"args": [
"/absolute/path/to/claude-mcp-tools/wikipedia-server/server.py"
],
"command": "python"
},
"news-search": {
"env": {},
"args": [
"/absolute/path/to/claude-mcp-tools/news-search-server/server.py"
],
"command": "python"
}
}
}
Seamless access to top MCP servers powering the future of AI integration.