Crypto Sentinel Agent
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., "@Crypto Sentinel Agentshow me the top 10 cryptocurrencies"
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.
DLT, FastAPI, and FastMCP Integration
This project is a demonstration of how to integrate dlt (data load tool), FastAPI, and FastMCP to create a simple cryptocurrency market analysis agent.
Project Overview
The project consists of three main components:
Data Pipeline: A
dltpipeline that ingests cryptocurrency market data from the CoinGecko API and loads it into a local DuckDB database.API Backend: A
FastAPIapplication that exposes the data from the DuckDB database through a REST API.Agent: A
FastMCPagent that provides tools to interact with the API, refresh the data, and perform market analysis.
Related MCP server: mcp-coincap-jj
How it Works
┌───────────────────┐ ┌──────────────────┐ ┌──────────────────┐
│ CoinGecko API │ ◄─── │ dlt Pipeline │ ───► │ DuckDB Database │
└───────────────────┘ └──────────────────┘ └──────────────────┘
▲
│
│
┌───────────────────┐ ┌──────────────────┐ ┌────┴─────┐
│ User │ ◄─── │ FastMCP Agent │ ◄─── │ FastAPI │
└───────────────────┘ └──────────────────┘ └──────────┘Components
Data Pipeline (dlt)
The data pipeline is defined in data_pipeline/ingest_coins.py. It uses the dlt library to:
Fetch the top 10 cryptocurrencies by market cap from the CoinGecko API.
Load the data into a DuckDB database named
crypto_pipeline.duckdb.The data is stored in a table named
top_coinswithin themarket_dataschema.
API Backend (FastAPI)
The API backend is defined in backend.py. It uses the FastAPI framework to create a simple API with the following endpoints:
GET /: Returns a status message.GET /coins: Returns a list of cryptocurrencies from the database. It supportsmin_priceandlimitquery parameters for filtering and pagination.
Agent (fastmcp)
The agent is defined in agent.py. It uses the FastMCP framework to create an agent with the following tools:
get_crypto_market_data: Fetches cryptocurrency data from the FastAPI backend.refresh_data: Triggers thedltpipeline to refresh the data from the CoinGecko API.analyze_market: Performs a simple market analysis on the data.
How to Run
1. Install Dependencies
Install the required Python packages from requirements.txt:
pip install -r requirements.txt2. Run the Data Pipeline
Run the data pipeline to populate the database:
python data_pipeline/ingest_coins.pyThis will create a crypto_pipeline.duckdb file in the project root.
3. Run the API Backend
Start the FastAPI server:
python backend.pyThe API will be available at http://localhost:8000.
4. Run the Agent
In a separate terminal, run the agent:
python agent.pyYou can now interact with the agent in your terminal.
Verifying the Data
You can manually verify the data in the database using the provided scripts:
check_data.py: Shows the top 5 coins by price.check_metadata.py: Showsdltmetadata for the loaded data.
Run them like this:
python check_data.py
python check_metadata.pyAdding the Agent to Gemini CLI
To add the FastMCP agent to the Gemini CLI, create a settings.json file inside your .gemini folder (if it doesn't already exist). Then, copy and paste the following configuration into your settings.json file:
{
"mcpServers": {
"Crypto Sentinel Agent": {
"command": "/Users/adpuz/Documents/Projects/dlt_fastapi_mcp/.venv/bin/python",
"args": [
"/Users/adpuz/Documents/Projects/dlt_fastapi_mcp/agent.py"
]
}
}
}Make sure the command and args paths are correct for your environment. After saving the settings.json file, you can use the @Crypto Sentinel Agent in the Gemini CLI to interact with your agent, for example, by typing @Crypto Sentinel Agent check the latest crypto market data.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables interaction with the CoinGecko Pro API to access cryptocurrency data including price history and market metrics through both MCP and OpenAI function calling.9MIT
- AlicenseAqualityBmaintenanceA Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface. Updated to use Coin Cap API v33261MIT
- FlicenseCqualityCmaintenanceProvides access to CoinCap's cryptocurrency market data and technical analysis tools via MCP, supporting assets, exchanges, markets, and more.381987
- AlicenseAqualityCmaintenanceMCP server for accessing crypto market data (prices, portfolio analytics) from CoinGecko and performing RAG-based search over internal documents with responsible-AI guardrails.4MIT
Related MCP Connectors
CoinGecko MCP — wraps CoinGecko free API (no auth required)
Agent-native crypto market-data over MCP+REST: order flow, whales, liquidations, calibrated scores
Live and historical cryptocurrency prices via CoinGecko free API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/AdamNone/dlt_fastapi_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server