Compass DaaS
Compass DaaS exposes vegan-friendly restaurant search, restaurant enrichment, and dietary fit decision tools over the Model Context Protocol.
README
Compass DaaS MCP
MCP server for Compass DaaS. It exposes three restaurant dietary decision tools over the Model Context Protocol and calls the Compass REST API with your API key.
Quick Start
npx -y @compass-food/mcp
Set COMPASS_API_KEY before starting the server:
export COMPASS_API_KEY=cmp_test_your_sandbox_key
For staging or local testing, set:
export COMPASS_BASE_URL=https://daas-api-veganmapai-1a8b7.a.run.app
Install
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"compass": {
"command": "npx",
"args": ["-y", "@compass-food/mcp"],
"env": {
"COMPASS_API_KEY": "cmp_test_your_sandbox_key"
}
}
}
}
Cursor
Add to Cursor MCP settings (~/.cursor/mcp.json globally, or .cursor/mcp.json in a workspace):
{
"mcpServers": {
"compass": {
"command": "npx",
"args": ["-y", "@compass-food/mcp"],
"env": {
"COMPASS_API_KEY": "cmp_test_your_sandbox_key"
}
}
}
}
Codex CLI
Edit ~/.codex/config.toml:
[mcp_servers.compass]
command = "npx"
args = ["-y", "@compass-food/mcp"]
[mcp_servers.compass.env]
COMPASS_API_KEY = "cmp_test_your_sandbox_key"
Get an API key
Sign up free — 1,000 Compass credits/month, no credit card required.
Tools
compass_search
Wraps POST /v1/search.
The mode tool argument is sent to the REST API as the X-Compass-Mode header.
{
"query": "strict vegan ramen in Brooklyn under $20",
"user_profile": {
"diet": "strict_vegan",
"allergens": ["peanut"],
"exclude_cross_contamination": true
},
"location": {
"lat": 40.6782,
"lng": -73.9442,
"radius_m": 5000
},
"limit": 10,
"mode": "rich"
}
compass_enrich_restaurant
Wraps POST /v1/enrich/restaurant.
Use compass_id for direct lookup, or name plus address or google_place_id for fuzzy match.
{
"name": "Buddha Bodai",
"address": "5 Mott St, New York, NY"
}
compass_decide_fit
Wraps POST /v1/decision/restaurant-fit.
The mode tool argument is sent to the REST API as the X-Compass-Mode header.
{
"compass_id": "rest_xyz789",
"user_profile": {
"diet": "strict_vegan",
"exclude_cross_contamination": true
},
"mode": "rich"
}
API Key Resolution
The server checks:
COMPASS_API_KEY~/.compass/config.json
Config file:
{
"api_key": "cmp_live_abc123",
"base_url": "https://api.compassfoodtechnologies.com"
}
Privacy
This package sends tool calls only to the configured Compass API base URL. It does not send secondary usage data.
Links
- Site: https://compassfoodtechnologies.com
- Signup: https://compassfoodtechnologies.com/signup
- API docs: https://api.compassfoodtechnologies.com/openapi
- Source: https://github.com/compass-food/compass-mcp
- npm: https://www.npmjs.com/package/@compass-food/mcp
- Support: support@compassfoodtechnologies.com
License
MIT
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.