mcp-server-llmling
MCP (Model context protocol) server with LLMling backend
Overview
MCP-server-llmling is a server designed to implement the Machine Chat Protocol (MCP) with a backend that supports LLM applications through a YAML-based configuration.
To use the server, configure it using a YAML file for resources, tools, and prompts. You can start the server manually or integrate it into other applications like the Zed Editor or Claude Desktop.
- YAML-based configuration for ease of setup and management of LLM content. - Support for various resource types including text files, images, and Python code. - Tool system for executing Python functions and OpenAPI integration. - Multiple transport options including default stdio as well as custom implementations for web communication.
- Setting up a customized LLM environment without extensive coding.
- Managing resources dynamically for AI applications.
- Using tools for enhanced functionality in LLM tasks.
Add to your AI client
Use these steps to connect mcp-server-llmling 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-llmling-phil65": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-llmling-phil65"
]
}
}
}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-llmling-phil65": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-llmling-phil65"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-llmling-phil65": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-llmling-phil65"
]
}
}
}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-llmling-phil65": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-llmling-phil65"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-llmling-phil65": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-llmling-phil65"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-llmling-phil65": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-llmling-phil65"
]
}
}
}