mcp-server-starter

roderickch01/mcp-server-starter
★ 0 stars Python 💻 Code/Dev Tools Updated today
Minimal Python skeleton for building MCP (Model Context Protocol) servers.
View on GitHub →

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-starter": {
      "command": "uvx",
      "args": [
        "mcp-server-starter"
      ]
    }
  }
}

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

README Excerpt

Skeleton for building a Model Context Protocol (MCP) server in Python. Fork this when you need to expose a custom set of tools/data to Claude Desktop, Claude Code, or any MCP-compatible client. Install directly from this repository with [pipx](https://pipx.pypa.io/): ```bash pipx install git+https://github.com/roderickch01/mcp-server-starter.git