Collection of Model Context Protocol (MCP) servers and setup instructions
MCP Servers is a collection of Model Context Protocol (MCP) servers and setup instructions designed to enhance the capabilities of AI assistants like Claude by allowing them to interact with external tools and resources.
To use MCP Servers, navigate to the specific server's directory in the repository for detailed documentation on installation and usage. Each server provides unique functionalities, such as API interactions.
Use these steps to connect MCP Servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-servers-censini": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-censini"
]
}
}
}Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-servers-censini": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-censini"
]
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-censini": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-censini"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
MCP is a standardized way for AI assistants to interact with external tools and resources, enabling enhanced functionalities.
Each MCP server has its own directory with detailed installation instructions. Please refer to the specific server's documentation.
Yes! Contributions are welcome. Please check the repository for guidelines on how to contribute.
{
"servers": {
"mcp-servers-censini": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-censini"
]
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-censini": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-censini"
]
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-censini": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-censini"
]
}
}
}