MCP Hackathon Server
Provides a template for building an MCP server with example tools, prompts, and resources, enabling developers to create a server that exposes data and actions to AI clients.
README
GSA MCP Hackathon — Server Template
A ready-to-run starter for building a Model Context Protocol (MCP) server in Python, plus deployment kits for IBM Cloud (watsonx Orchestrate) and Databricks.
Built with FastMCP and uv. If you have never built an MCP server before, start with QUICKSTART.md.
What is an MCP server?
An MCP server exposes tools (functions the model can call), prompts (reusable conversation starters), and resources (data the model can read) to an AI client such as Claude Desktop, Claude Code, or an agent platform like watsonx Orchestrate. You write the tools; the client's model decides when to call them.
This template gives you a working server with one example of each, so you can replace the examples with your own service and deploy.
Repo structure
mcp-hackathon-template/
├── README.md # This file
├── QUICKSTART.md # 5-minute clone → run → connect walkthrough
├── main.py # Local entry point (uv run python main.py)
├── pyproject.toml # Package + dependencies (uv)
├── requirements.txt # Mirror of runtime deps (for buildpack hosts)
├── Dockerfile # Container image (streamable-HTTP, port 8080)
├── manifest.yaml # cloud.gov (Cloud Foundry) deploy
├── server.json # MCP registry metadata
├── .env.example # Copy to .env for local dev
├── .github/workflows/ci.yml # Lint + test on push/PR
├── src/
│ └── example_server/ # ← rename to your service
│ ├── app.py # Thin entry point: builds FastMCP, picks transport
│ ├── config.py # Settings from env vars / .env
│ ├── models.py # Pydantic models & enums for tool params
│ ├── utils.py # Shared helpers (HTTP client, pagination)
│ ├── routes.py # HTTP-only routes (/health, /version)
│ ├── tools/ # ONE FILE PER TOOL
│ │ ├── __init__.py # register_tools(mcp) aggregator
│ │ └── example_tool.py
│ ├── prompts/
│ │ ├── __init__.py # register_prompts(mcp) aggregator
│ │ └── example.py
│ └── resources/
│ ├── __init__.py # register_resources(mcp) aggregator
│ └── example.py
├── tests/ # Import + registration smoke tests
├── eval/ # Stub → build a Phoenix eval harness (see mcp-eval skill)
└── deploy/
├── README.md # Which deployment kit to use
├── ibm/ # watsonx Orchestrate: 3 kits (see below)
└── databricks/ # Databricks Apps kit
Getting started
Prerequisites
- uv —
pip install uvorbrew install uv
Install and run
cp .env.example .env
uv sync
uv run python main.py
The server starts in stdio mode — it talks JSON-RPC over stdin/stdout, which is how local clients (Claude Desktop, Claude Code) launch it. See QUICKSTART.md to connect a client.
Verify
uv sync --group dev
uv run pytest tests/ -v # tests
uv run ruff check . # lint
The one-tool-per-file pattern
Each tool lives in its own file under src/example_server/tools/ and exposes a register(mcp) function. tools/__init__.py calls each one from a single register_tools(mcp). This keeps the tool list scannable and lets you add or remove an integration by touching two files.
Step 1 — create src/example_server/tools/my_tool.py:
from typing import Annotated
from fastmcp import FastMCP
from example_server.utils import fetch_json
def register(mcp: FastMCP) -> None:
@mcp.tool(
name="example_get_thing",
annotations={
"title": "Get a thing",
"readOnlyHint": True,
"destructiveHint": False,
"idempotentHint": True,
"openWorldHint": True,
},
)
async def get_thing(thing_id: Annotated[str, "The ID to fetch."]) -> dict:
"""One-line summary. Document the data source, its update cadence,
and the return shape here — the model reads this docstring."""
return await fetch_json(f"https://api.example.gov/things/{thing_id}")
Step 2 — wire it up in tools/__init__.py:
from example_server.tools import example_tool, my_tool
def register_tools(mcp) -> None:
example_tool.register(mcp)
my_tool.register(mcp) # ← add this line
Step 3 — add any API key as a typed field in config.py and document the env var in .env.example.
Prompts (prompts/) and resources (resources/) follow the exact same register(mcp) + aggregator pattern.
Rename the package
Before publishing your server, rename example_server to your service (e.g. census_mcp):
- Rename the folder
src/example_server/→src/<your_name>/. - Update
pyproject.toml: the[project].name,[project.scripts], and[tool.hatch.build.targets.wheel].packages. - Find-and-replace
example_serveracrosssrc/,tests/,main.py,Dockerfile, andmanifest.yaml.
Tool design tips (federal data)
- Return structured data, not prose. Return dicts/lists with consistent keys and let the model narrate.
- Document freshness. Federal datasets lag; state the update frequency and "as-of" date in the docstring.
- Expose pagination. Use
PaginationParams/paginate()fromutils.py, and returnhas_more/next_offset. - Use explicit timeouts.
utils.fetch_jsondefaults to 30s. - Actionable errors. Return an error dict with a
hint, not a raw stack trace.
Deploying
Local development uses stdio. To share your server with an agent platform, deploy it and register it. See deploy/README.md for a chooser, then:
- IBM watsonx Orchestrate — deploy/ibm/ (three kits: local stdio toolkit, Code Engine build-from-Git, and prebuilt image).
- Databricks Apps — deploy/databricks/.
Both read the same server code; app.py automatically serves HTTP when the platform injects a port.
Evaluations
Measuring how well an LLM can use your tools is the real test of server quality. This template intentionally does not ship an eval harness — see eval/README.md for how to build one with the mcp-eval skill.
License
MIT. See SECURITY.md for the vulnerability disclosure policy and hackathon security notes.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。