compass
by raystack·★ 67·Score 46
Compass is a knowledge graph context engine that provides MCP tools for AI agents to search and traverse organizational metadata.
Overview
Compass builds a temporal knowledge graph of organizational entities, relationships, and documents across systems. It exposes MCP tools that enable AI agents to search the graph, traverse connections, assess impact of changes, and read attached documents. The system features hybrid search combining keyword precision with semantic similarity, impact analysis capabilities, and supports any entity types with custom properties.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose Compass when you need to map complex organizational systems and want AI agents to understand relationships and impact across your infrastructure.
When NOT to choose this
Don't choose Compass if you need real-time updates (it's focused on temporal knowledge, not live data) or if you're already heavily invested in a different graph database ecosystem.
Tools this server exposes
3 tools extracted from the READMEentity_searchSearch for entities in the knowledge graph using hybrid keyword and semantic search.
entity_contextRetrieve context around an entity with multi-hop bidirectional traversal.
entity_impactAnalyze impact of an entity change through dependency relationships.
Note: Inferred tool names from CLI examples in the usage section. The README mentions 'composable MCP tools' but doesn't provide explicit documentation of the tool names or signatures.
Comparable tools
Installation
Install Compass on macOS, Windows, Linux, or via Docker:
# macOS
brew install raystack/tap/compass
# Linux (Debian)
sudo dpkg -i compass_*.deb
# Docker
docker pull raystack/compass:latestConfigure MCP server in .mcp.json:
{
"mcpServers": {
"compass": {
"type": "sse",
"url": "http://localhost:8080/mcp"
}
}
}Start the server with:
compass config init
compass server migrate
compass server startFAQ
- What types of entities can Compass model?
- Compass supports any entity type with custom properties - hardware, software, operations, people, or any other organizational concept.
- How does the MCP integration work?
- Compass exposes MCP tools that AI agents can use to search the knowledge graph, traverse relationships, assess impact, and read documents through Server-Sent Events at http://localhost:8080/mcp.
Compare compass with
Last updated · Auto-generated from public README + GitHub signals.