llm-mcp-server

jacob-mennell/llm-mcp-server
★ 0 stars Python AI/LLM Updated 5d ago
Template for LLM MCP Server
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "llm-mcp-server": {
      "command": "uvx",
      "args": [
        "llm-mcp-server"
      ]
    }
  }
}

Or install with pip: pip install llm-mcp-server

README Excerpt

This repository now works as a more protocol-faithful example MCP server built with FastAPI. It demonstrates a minimal JSON-RPC-style MCP endpoint with tool registration, schema-driven arguments, and tool execution semantics that are closer to a real MCP server. - A FastAPI application with versioned routes.