MCP Servers Collection
March 14, 2025 ยท View on GitHub
A collection of MCP (Model Context Protocol) servers for enhancing AI capabilities.
Included Servers
- Twitter API: Post tweets and search recent tweets
- Wordrpess: Get, create, update and delete posts
Installation
- Clone the repository:
git clone https://github.com/sidbharath/useful-mcp-servers.git
cd mcp-servers
- Install dependencies:
npm install -r requirements.txt
- Configure your API keys and tokens (see individual server READMEs)
#Usage with Claude Desktop
Configure Claude for 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
For example:
{
"mcpServers": {
"twitter": {
"command": "python",
"args": [
"/absolute/path/to/useful-mcp-servers/twitter/twitter_server.py"
],
"env": {
"TWITTER_API_TOKEN": "your_bearer_token_here"
}
}
}
}