mcp-server-toolkit

Tajaddin/mcp-server-toolkit
★ 0 stars Python AI/LLM Updated 4d ago
Reusable framework for building Model Context Protocol (MCP) servers for Claude, plus three production-shaped example servers (filesystem, GitHub issues, SQLite). In-memory test harness with p99 round-trip 8.2 ms.
View on GitHub → Try with Claude — $10 free →

Quick Install

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

Add to claude_desktop_config.json:

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

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

README Excerpt

> Reusable framework for building **Model Context Protocol (MCP) servers** for Claude, plus three production-shaped example servers — filesystem-stats, github-issues, sqlite-query. In-memory test harness with **p99 tool round-trip = 8.2 ms** (target was 50 ms). MCP is Anthropic's standard for letting LLMs call tools running on your machine. Every MCP server starts with the same boilerplate: a `FastMCP` instance, a few tool decorators, a stdio entrypoint. This project bundles:

Tools (10)

describe_tableechofile_summaryfind_filesget_issuelist_directorylist_repo_issueslist_tablesquerysearch_issues

Topics

anthropicclaudefastmcpllm-toolsmcpmodel-context-protocolpython