mcp-server-starter
A skeleton MCP server in Python for exposing custom tools (e.g., echo, add) to MCP-compatible clients like Claude Desktop.
README
mcp-server-starter
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.
What's an MCP server?
MCP is an open protocol that lets language-model clients call into external tools and data sources through a standard interface. An MCP server is the small process that hosts those tools — you write the functions, the protocol handles discovery and invocation.
Quickstart
Install directly from this repository with pipx:
pipx install git+https://github.com/roderickch01/mcp-server-starter.git
Then register it with your MCP client. For Claude Desktop, edit ~/.config/Claude/claude_desktop_config.json (Linux), ~/Library/Application Support/Claude/claude_desktop_config.json (macOS), or %APPDATA%\Claude\claude_desktop_config.json (Windows) and add:
{
"mcpServers": {
"starter": {
"command": "mcp-server-starter"
}
}
}
A copy of this snippet lives at examples/claude_desktop_config.json. Restart your client and the echo and add tools should appear.
What's included
Two demo tools to verify the wiring:
echo(text: str) -> str— returns"echo: {text}"add(a: int, b: int) -> int— returns the sum
Both live in src/mcp_server_starter/server.py (under 30 lines).
Adding your own tool
Open server.py and decorate any function with @mcp.tool(). The signature, type hints, and docstring become the tool's schema automatically:
@mcp.tool()
def reverse(text: str) -> str:
"""Return the input string reversed."""
return text[::-1]
Reinstall (pipx reinstall mcp-server-starter) and restart your MCP client. The new tool is discoverable.
Local development
git clone https://github.com/roderickch01/mcp-server-starter.git
cd mcp-server-starter
python -m venv .venv && source .venv/bin/activate
pip install -e .
mcp-server-starter # runs the server over stdio
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.