product-crud-mcp
Exposes CRUD operations for products via MCP tools and a resource, sharing a common business logic layer with a GraphQL API.
README
Product CRUD — FastAPI + Strawberry GraphQL + MCP
A small learning/demo project with one CRUD entity (Product) and one shared
business-logic layer (app/crud.py). The same business logic is exposed through
both:
/graphql— a Strawberry GraphQL API/mcp— MCP tools and a resource for AI hosts
This repo uses SQLite by default so it runs with zero external services. It is
also designed so the database backend can be swapped later, for example to
Oracle via python-oracledb.
Why this project exists
The main goal is to show how to keep core business logic separate from transport and API adapters:
app/crud.pycontains plain CRUD functions and SQLAlchemy accessapp/graphql_schema.pywraps that logic in a GraphQL schemaapp/mcp_server.pywraps the same logic in MCP tools and resourcesapp/main.pymounts both the GraphQL router and a Streamable HTTP MCP app
That makes it easy for the same operations to support different clients and deployment modes without duplicating business rules.
Project layout
app/
database.py SQLAlchemy engine/session setup
models.py Product ORM model
crud.py Plain CRUD functions, used by both interfaces
graphql_schema.py Strawberry GraphQL query/mutation schema
mcp_server.py MCP tools and resource adapter
main.py FastAPI app mounting GraphQL and MCP
Dockerfile
docker-compose.yml
k8s/deployment.yaml
k8s/service.yaml
README.md
requirements.txt
.gitignore
Key files for contributors and tools
app/crud.py— core business logic for productsapp/models.py— SQLAlchemyProductmodelapp/database.py— database engine and session setupapp/graphql_schema.py— GraphQL query/mutation definitionsapp/mcp_server.py— MCP tool/resource definitionsapp/main.py— FastAPI app and route mountingDockerfile/docker-compose.yml— containerized deployment
Prerequisites
- macOS with Python 3.11+ installed
- Docker and Docker Compose installed if you want to run in Docker
- Optional:
uvorclaudeif using the MCP CLI/Inspector workflows
Run locally on macOS
From the repository root:
cd "/Users/sauvi/Developer/2026 Job Switch/Coding Main Folder/mcp-crud-demo"
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
Start the app on a specific host and port:
uvicorn app.main:app --reload --host 127.0.0.1 --port 8000
If you want a different port, replace 8000 with any available port.
Verify it is running
Open in your browser:
http://127.0.0.1:8000/healthhttp://127.0.0.1:8000/graphql
Example GraphQL mutation:
mutation {
createProduct(name: "Keyboard", description: "Mechanical", price: 49.99, quantity: 10) {
id
}
}
Then query:
query {
products {
id
name
price
quantity
}
}
Run in Docker
Build and start the service with Docker Compose:
docker compose up --build
Then open:
http://127.0.0.1:8000/healthhttp://127.0.0.1:8000/graphqlhttp://127.0.0.1:8000/mcp
Optional persistence
By default the SQLite file lives inside the container and resets when the
container is rebuilt. To keep data across restarts, uncomment or add a volume
mapping in docker-compose.yml:
services:
product-crud-mcp:
build: .
ports:
- "8000:8000"
volumes:
- product-data:/app
volumes:
product-data:
Run with MCP tools
Option A — MCP Inspector
uv run mcp dev app/mcp_server.py
This opens a browser UI where you can call create_product, list_products,
update_product, and delete_product.
Option B — Claude Desktop / Claude Code
uv run mcp install app/mcp_server.py
or for Claude Code:
claude mcp add product-crud -- uv run --with "mcp[cli]" mcp run /absolute/path/to/app/mcp_server.py
Option C — Mounted Streamable HTTP
With uvicorn app.main:app running, the same MCP tools are available at
http://127.0.0.1:8000/mcp.
Kubernetes
To build the image and deploy to Kubernetes:
docker build -t product-crud-mcp:latest .
kubectl apply -f k8s/deployment.yaml
kubectl apply -f k8s/service.yaml
kubectl port-forward svc/product-crud-mcp 8000:80
The K8s YAML includes /health readiness and liveness probes.
Swap in Oracle
To use Oracle instead of SQLite, update app/database.py:
from sqlalchemy import create_engine
DATABASE_URL = "oracle+oracledb://user:password@host:1521/?service_name=FREEPDB1"
engine = create_engine(DATABASE_URL)
Add oracledb to requirements.txt. No other application code needs to change.
Notes for new contributors or AI tools
- The repository is intentionally small and designed for exploration.
app/crud.pyis the single source of truth for product operations.- GraphQL and MCP are adapters on top of that single core.
- If you want to add a new interface, follow the same pattern: keep logic in
crud.pyand add a thin adapter layer. - Start by reading
app/main.py,app/crud.py, andapp/mcp_server.py.
Support files
.gitignoreexcludes virtual environments, editor settings, caches, and local SQLite files.requirements.txtlists runtime dependencies.Dockerfileanddocker-compose.ymldefine container behavior.
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.