my-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@my-mcpgive me a brief summary of all my notes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP-Server
MCP-Server is a small Python workspace built around a FastMCP server. The main package lives in my-mcp/ and exposes a server named DataTools that combines local weather data from SQLite with live cryptocurrency tools from CoinGecko.
What it includes
MCP tools for querying weather readings and calculating averages from the local database
MCP tools for fetching crypto prices and top coins from CoinGecko
A dynamic MCP resource at
weather://latestA weather summary prompt for client-side LLM workflows
SQLite persistence with SQLAlchemy models and Alembic migrations
Docker support for running the server in a container
Repository layout
.
├── Dockerfile
├── pyproject.toml
├── uv.lock
└── my-mcp/
├── alembic.ini
├── migrations/
├── data/
├── pyproject.toml
├── README.md
└── src/my_mcp/
├── server.py
└── db/Requirements
Python 3.14
Setup
Install dependencies from the workspace root:
uv syncThe server uses environment variables from .env when available. The most important ones are:
HOST- bind address for the MCP server, for example0.0.0.0PORT- SSE port, for example8080DB_PATH- path to the SQLite database, defaulting todata/app.db
Database
The database schema is managed with Alembic and stored in SQLite.
Run migrations from the package directory:
cd my-mcp
uv run alembic upgrade headIf you want sample data, you can seed the database with:
cd my-mcp
uv run python -m my_mcp.db.seedRun locally
Start the server from the repository root:
uv run --package my-mcp my-mcpBy default the server runs over SSE and listens on the host and port defined by HOST and PORT.
Docker
Build the image:
docker build -t mcp-server .Run it:
docker run --rm -p 8080:8080 -e HOST=0.0.0.0 -e PORT=8080 -e DB_PATH=data/app.db mcp-serverMCP tools and resource
Tools
readings_for_city(city, hours=6)- returns recent weather readings for a cityaverage_temp(city, hours=6)- returns the average temperature for a cityget_crypto_price(coin_id="bitcoin")- returns price, market cap, and 24h change for a coinget_top_coins(limit=5)- returns the top cryptocurrencies by market cap
Resource
weather://latest- returns the newest weather reading in the database
Prompt
weather_summary(city, hours=6)- prepares a concise weather summary prompt for a client or LLM
Client configuration
For SSE-based clients, point them at the running server URL, for example:
http://localhost:8080/sseFor Claude Desktop or similar tools, use a command-based config that launches uv run --package my-mcp my-mcp from this repository.
Notes
The crypto tools call the public CoinGecko API, so internet access is required.
The database file is created automatically if it does not exist.
Alembic is already configured to use
sqlite:///./data/app.dbinsidemy-mcp/alembic.ini.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ovezthaking/MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server