Eddie MCP Server

Eddie MCP Server

Containerized MCP server with 15 geospatial data tools exposed via HTTP API for Intercom integration.

Category
Visit Server

README

Eddie MCP Server - Resto API Integration

Containerized MCP server with 15 geospatial data tools exposed via HTTP API for Intercom integration.

Quick Start

1. Configure Environment

cp .env.example .env
# Edit .env with OAuth2 credentials:
# OAUTH2_CLIENT_ID, OAUTH2_USERNAME, OAUTH2_PASSWORD

2. Run Service

./quickstart.sh          # macOS/Linux
# or
quickstart.bat           # Windows
# or manually
docker-compose up -d

3. Access API

  • Docs: http://localhost:8000/docs
  • Health: curl http://localhost:8000/health
  • Tools: curl http://localhost:8000/tools

Intercom Integration

Call tools via HTTP POST:

curl -X POST http://localhost:8000/tools/search_data \
  -H "Content-Type: application/json" \
  -d '{"parameters": {"query": "satellite", "limit": 10}}'

For production, use your deployed URL (e.g., https://your-domain.com/api/tools/...)

15 Available Tools

Authentication: get_auth_token, check_auth_status Collections: list_collections, get_collection_info, search_collection_features Search: search_data, get_feature_details Users: get_my_profile, get_user_profile, get_users, get_user_features Groups: list_groups, get_group_info STAC: get_stac_queryables, get_landing_page

See /tools endpoint for full details.

Environment Setup

Production/Server

Create .env on your server with:

OAUTH2_CLIENT_ID=your_production_id
OAUTH2_USERNAME=your_username
OAUTH2_PASSWORD=your_password
HOST=0.0.0.0
PORT=8000
DEBUG=false
REQUEST_TIMEOUT=30

Secure it:

chmod 600 .env

Secret Management

  • .env is NEVER committed to git (see .gitignore)
  • .env.example is the template in git (no secrets)
  • Store real credentials only on production server

Deployment

Docker Compose (Recommended)

docker-compose up -d          # Start
docker-compose logs -f        # View logs
docker-compose down           # Stop

Kubernetes / Docker Swarm

Use environment variables or secrets manager. Container reads OAUTH2_* from environment.

API Endpoints

  • GET /health - Health check
  • GET /tools - List available tools
  • POST /tools/{tool_name} - Execute tool with {"parameters": {...}}
  • GET /docs - Interactive API documentation
  • GET /auth/status - Check authentication

Files

File Purpose
app.py MCP server with 15 tools
service.py HTTP wrapper (FastAPI)
Dockerfile Container definition
docker-compose.yml Local/production deployment
requirements.txt Python dependencies
.env.example Configuration template (in git)
.env Real credentials (not in git)
.gitignore Blocks .env from git

Troubleshooting

Auth failing? Check .env and restart: docker-compose restart

Service won't start? Check logs: docker-compose logs eddie-mcp

Port in use? Change PORT in .env or kill process: lsof -i :8000

API docs? Open http://localhost:8000/docs when service is running

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

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.

Official
Featured