MCP-Server-For-LLM
Model Context Protocol Servers written in different languages by me to use along with Claude, Cursor, and other apps
Overview
MCP-Server-For-LLM is a set of Model Context Protocol Servers developed in various programming languages, designed to work seamlessly with applications like Claude and Cursor.
To use MCP-Server-For-LLM, clone the repository from GitHub, set up the server according to the provided documentation, and integrate it with your desired applications.
- Multi-language support for Model Context Protocol Servers - Easy integration with popular applications like Claude and Cursor - Customizable server configurations
- Building AI applications that require context management.
- Enhancing existing applications with context-aware features.
- Developing new tools that leverage the Model Context Protocol.
Add to your AI client
Use these steps to connect MCP-Server-For-LLM 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-server-for-llm-glareone": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-for-llm-glareone"
]
}
}
}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-server-for-llm-glareone": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-for-llm-glareone"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-for-llm-glareone": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-for-llm-glareone"
]
}
}
}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-server-for-llm-glareone": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-for-llm-glareone"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-for-llm-glareone": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-for-llm-glareone"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-for-llm-glareone": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-for-llm-glareone"
]
}
}
}FAQ
What programming languages are supported?
MCP-Server-For-LLM includes implementations in several programming languages, allowing developers to choose their preferred language.
Is there documentation available?
Yes! Comprehensive documentation is provided in the GitHub repository to help users set up and use the servers effectively.
Can I contribute to the project?
Absolutely! Contributions are welcome, and you can submit pull requests on GitHub.