We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/orneryd/Mimir'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# AI Agents & Integration
**Integrate NornicDB with AI agents and tools.**
## π Documentation
- **[Chat Modes](chat-modes.md)** - Use with Cursor IDE and AI assistants
- **[MCP Tools Reference](mcp-tools-reference.md)** - Model Context Protocol tools
- **[Cursor Integration](cursor-integration.md)** - Cursor IDE setup
- **[Agent Examples](agent-examples.md)** - Agent patterns and examples
## π€ AI Integration Features
### Model Context Protocol (MCP)
NornicDB provides 6 MCP tools for AI agents:
- `search` - Semantic search
- `cypher` - Execute queries
- `schema` - Get graph schema
- `neighbors` - Find related nodes
- `path` - Find paths between nodes
- `stats` - Get statistics
[MCP Tools Reference β](mcp-tools-reference.md)
### Cursor IDE Integration
Use NornicDB as a knowledge base for your codebase.
[Cursor Setup Guide β](cursor-integration.md)
### Chat Modes
Three modes for different use cases:
- **Ask** - Question answering
- **Search** - Information retrieval
- **Analyze** - Data analysis
[Chat Modes Guide β](chat-modes.md)
## π Quick Start
### With Cursor IDE
1. Install NornicDB MCP server
2. Configure in Cursor settings
3. Start chatting with your knowledge base
[Complete setup β](cursor-integration.md)
### With Custom Agents
```python
from nornicdb import MCP Client
client = MCPClient("http://localhost:7474")
# Search knowledge base
results = client.search("machine learning algorithms")
# Execute Cypher
data = client.cypher("MATCH (n:Concept) RETURN n LIMIT 10")
```
[Agent examples β](agent-examples.md)
## π Learn More
- **[MCP Tools](mcp-tools-reference.md)** - Complete tool reference
- **[Chat Modes](chat-modes.md)** - Usage patterns
- **[Examples](agent-examples.md)** - Real-world patterns
---
**Get started** β **[Cursor Integration](cursor-integration.md)**