📦
Learning MCP
Practical Example with MCP
0 installs
11 stars
1 forks
Trust: 61 — Good
Devtools
Installation
npx learning-mcpAsk AI about Learning MCP
Powered by Claude · Grounded in docs
I know everything about Learning MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Minimal MCP client and server Example.
This repository demonstrates the power and flexibility of MCP. Lan
-
In a terminal, call
uv run python -m app.serverto start MCP server. We're using HTTP streamable. -
In another terminal, call
uv run python -m app.client. Checkuv run -- python -m app.client -hfor options. If using ollama, make sure to serve and pull the models.
uv run python -m app.client --prompt "what's 9+9?" --ollama_model qwen3 --llm ollamauv run python -m app.client --prompt "what's 9+9?" --llm ollama --ollama_model deepseek-r1uv run python -m app.client --prompt "what's 9+9?" --llm google
Generate proto services
uv run python -m grpc_tools.protoc -Iproto_gen=app/proto --python_out=. --pyi_out=. --grpc_python_out=. ./app/proto/*.proto
Resources
- https://modelcontextprotocol.io/introduction: MCP Theory.
- https://python.langchain.com/api_reference/reference.html: Abstract object that represents various LLM models.
- https://docs.mcp-use.com/: Abstract interface to between MCP server and various LLM models, remotely or local (ollama).
- https://gofastmcp.com/servers/server: FastMCP documentation.
