MCP Servers
Overview
MCP Servers is a repository containing implementations of the Model Context Protocol (MCP) for various AI models, allowing standardized communication between applications and AI models.
To use MCP Servers, follow the specific setup and usage instructions provided in the README files for each project, such as the Perplexity MCP Server.
- Standardized interface for AI model communication - Easy switching between different AI models - Multiple model support within the same application
- Integrating various AI models into a single application.
- Simplifying the development process for AI applications.
- Facilitating communication between applications and AI models using a consistent protocol.
Add to your AI client
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.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-servers-lelanhus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-lelanhus"
]
}
}
}Claude Desktop
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-lelanhus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-lelanhus"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-lelanhus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-lelanhus"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-servers-lelanhus": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-lelanhus"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-lelanhus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-lelanhus"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-lelanhus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-lelanhus"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP is a standardized interface that allows applications to communicate with different AI models seamlessly.
How do I set up the MCP Servers?
Each project within the repository has its own README with detailed setup instructions.
Can I use multiple AI models at once?
Yes! MCP allows for easy integration and communication with multiple AI models.