MCP Hub
Back to servers

MCP-Demo

A minimal Python MCP server that enables Claude Code to call local Ollama models (e.g., gemma3) as a tool, routing low-stakes work off the API and onto a homelab.

glama
Updated
Apr 24, 2026

mcp-demo

A minimal Python MCP server, built in phases so each commit teaches one concept. End state: Claude Code can call local Ollama models (gemma3:4b / 3:12b) as a tool, routing low-stakes work off the API and onto the homelab.

What is MCP, really?

Model Context Protocol is a standardized JSON-RPC 2.0 protocol that lets an LLM client (Claude Code, Claude Desktop, Cursor) discover and invoke tools, fetch resources, and load prompt templates from separate processes called MCP servers. MCP is to LLM tooling what LSP is to IDE language support: one protocol, many interoperable implementations.

The moving pieces

    ┌───────────────────┐  stdio / HTTP   ┌──────────────────┐
    │  MCP Client       │ ◄──JSON-RPC──► │  MCP Server      │
    │  (Claude Code)    │                │  (this repo)     │
    └───────────────────┘                └──────────────────┘
            │                                     │
            │ spawns as child                     │ hits
            │ process (stdio)                     │ localhost:11434
            ▼                                     ▼
     your shell env                        Ollama / gemma3
  • Client — embedded in the LLM app
  • Server — any process that speaks MCP
  • Transportstdio (client spawns server as child, pipes JSON-RPC) or streamable-http (server is a web service). This repo uses stdio.

Three primitives an MCP server exposes

PrimitiveWhat it isThis repo's use
ToolsFunctions the LLM can callecho, ollama_ask, get_weather
ResourcesRead-only blobs the client can fetchollama://models (list pulled models)
PromptsPre-canned prompt templates(not used — kept minimal)

Phase progression

Each phase is one commit — git log shows the evolution.

  1. scaffold — pyproject, README, .gitignore.
  2. hello-world server — one echo tool + smoke-test client. Proves the full lifecycle: client spawn → handshake → tool discovery → tool call.
  3. ollama_ask tool — async tool that POSTs to localhost:11434/api/generate and returns Gemma's reply.
  4. polish — adds system parameter to ollama_ask and exposes a resource at ollama://models (list of pulled models).
  5. grounding contrast — adds get_weather (hits NWS api.weather.gov). The point isn't the weather — it's that ollama_ask hallucinates current facts while get_weather returns live data. Same MCP primitive (a tool), completely different epistemic status. This is the difference between an LLM guessing and an agent.

Install & run

python3 -m venv .venv
source .venv/bin/activate
pip install -e .
# Phase 2+ only: run the server by hand to smoke-test
python -m mcp_demo.server

The server reads JSON-RPC off stdin and writes to stdout — if you run it directly in a terminal it will just sit there waiting for input. That's expected. The client (Claude Code) is what actually feeds it.

Registering with Claude Code

MCP servers live in ~/.claude.json (not settings.json — that schema rejects the mcpServers key). The supported path is the claude CLI:

claude mcp add mcp-demo /home/booty/mcp-demo/.venv/bin/python -- -m mcp_demo.server

That writes an entry like this into ~/.claude.json:

"mcp-demo": {
  "type": "stdio",
  "command": "/home/booty/mcp-demo/.venv/bin/python",
  "args": ["-m", "mcp_demo.server"]
}

Restart Claude Code. Tools appear as mcp__mcp-demo__<tool_name> and the resource as ollama://models.

Further reading

Reviews

No reviews yet

Sign in to write a review