Nenhuma descrição

Lukas Goldschmidt 4ee195f730 Add Docker Compose support 1 mês atrás
cache eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
indicators eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
providers eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
services eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
.dockerignore 4ee195f730 Add Docker Compose support 1 mês atrás
.gitignore eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
Dockerfile 4ee195f730 Add Docker Compose support 1 mês atrás
PROJECT.md 5db5b8786e Update docs for FastMCP transport 1 mês atrás
README.md 4ee195f730 Add Docker Compose support 1 mês atrás
config.py eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
docker-compose.yml 4ee195f730 Add Docker Compose support 1 mês atrás
errors.py eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
killserver.sh eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
main.py eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
mcp_tools.py 5db5b8786e Update docs for FastMCP transport 1 mês atrás
requirements.txt eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
restart.sh eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
run.sh 5db5b8786e Update docs for FastMCP transport 1 mês atrás
server.py eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás
server_fastmcp.py 5db5b8786e Update docs for FastMCP transport 1 mês atrás
tests.py 5db5b8786e Update docs for FastMCP transport 1 mês atrás
tests.sh eee45cf911 Initial MCP HTTP server cleanup 1 mês atrás

README.md

Crypto MCP Server

FastMCP-based crypto tools server.

Transport (compliance-first)

  • MCP SSE transport mounted at /mcp
  • SSE stream endpoint: /mcp/sse
  • message endpoint handled by FastMCP under /mcp/messages/
  • no legacy /rpc compatibility path

Runtime

pip install -r requirements.txt
./run.sh

Default URL base: http://127.0.0.1:8505

Docker / Compose

Build and start the server with Compose from the project directory:

docker compose up -d --build

The container listens on port 8505 and exposes the MCP SSE transport at:

  • http://127.0.0.1:8505/mcp/sse
  • http://127.0.0.1:8505/health

To stop it:

docker compose down

Tools

  • get_price
  • get_ohlcv
  • get_indicator
  • get_market_snapshot
  • get_top_movers

Health

  • GET /
  • GET /health

Tests

./tests.sh