DVBase MCP Server
Enables Claude to access Ninox database schema and data, supporting table inspection, data queries, and context retrieval.
README
DVBase MCP Server
MCP Server für Digital Vereinfacht – gibt Claude direkten Zugriff auf das Ninox-Datenmodell der DVBase.
Was macht das?
Claude kann damit:
- Tabellen & Felder eurer Ninox-DB einsehen (Schema)
- Daten abfragen via Ninox-Script (
select Rechnungen where Status = "Offen") - Kontextwissen lesen (Prozessbeschreibungen, Stolperfallen, n8n-Abhängigkeiten)
Installation (auf eurem Server)
1. Dateien auf den Server kopieren
# Archiv hochladen (z.B. per scp)
scp dvbase-mcp-server.tar.gz user@euer-server:~/
# Auf dem Server entpacken
ssh user@euer-server
tar xzf dvbase-mcp-server.tar.gz
cd dvbase-mcp-server
2. Dependencies installieren
npm install
3. Konfiguration (.env)
cp .env.example .env
nano .env
Dann ausfüllen:
# Ninox API Key (Zahnrad → Integrationen → Generate)
NINOX_API_KEY=euer-key-hier
# Aus der Ninox-URL: https://app.ninox.com/#/teams/TEAM_ID/databases/DB_ID
NINOX_TEAM_ID=eure-team-id
NINOX_DATABASE_ID=eure-database-id
# Sicherheits-Token – generieren mit: openssl rand -hex 32
MCP_AUTH_TOKEN=euer-geheimer-token-hier
PORT=3001
4. Bauen & starten
npm run build
npm start
Testen ob's läuft:
curl http://localhost:3001/health
# → {"status":"ok","server":"dvbase-mcp","authEnabled":true, ...}
5. Mit nginx nach außen freigeben (für Claude.ai)
In eurer nginx-Konfig (z.B. /etc/nginx/sites-available/default):
location /mcp {
proxy_pass http://localhost:3001/mcp;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_http_version 1.1;
# Wichtig für SSE/Streaming:
proxy_set_header Connection '';
proxy_buffering off;
proxy_cache off;
chunked_transfer_encoding on;
}
sudo nginx -t && sudo systemctl reload nginx
6. Dauerhaft laufen lassen (pm2)
# pm2 installieren falls noch nicht vorhanden
npm install -g pm2
# Server als Daemon starten
pm2 start dist/index.js --name dvbase-mcp
# Autostart nach Reboot
pm2 save
pm2 startup
Verbindung herstellen
Claude.ai (Browser)
- Gehe zu claude.ai → Settings → Integrations → MCP
- Trage ein:
- URL:
https://eure-domain.de/mcp - Auth: Bearer Token → euer
MCP_AUTH_TOKEN
- URL:
Claude Desktop App
In ~/.config/Claude/claude_desktop_config.json:
{
"mcpServers": {
"dvbase": {
"url": "http://localhost:3001/mcp",
"headers": {
"Authorization": "Bearer EUER_MCP_AUTH_TOKEN"
}
}
}
}
Verfügbare Tools
| Tool | Beschreibung |
|---|---|
list_modules |
Zeigt alle Tabellen der DVBase |
get_schema |
Felder, Typen, Optionen einer Tabelle |
get_context |
Entwickler-Kontextwissen (braucht Doku-Tabelle) |
get_full_module_info |
Schema + Kontext kombiniert |
query_data |
Ninox-Script Abfragen ausführen |
Doku-Tabelle (optional)
Für get_context und get_full_module_info braucht ihr eine Tabelle in Ninox mit diesen Feldern:
| Feld | Typ | Inhalt |
|---|---|---|
| Modul | Text | Modulname (z.B. "Bautagesbericht") |
| Prozessbeschreibung | Text | Wie das Modul funktioniert |
| Stolperfallen | Text | Bekannte Probleme & Gotchas |
| N8N_Abhaengigkeiten | Text | Welche n8n-Workflows damit interagieren |
| Kundenspezifisch | Text | Kundenspezifische Anpassungen |
| Tabellen_Mapping | Text | Zugehörige Tabellen-IDs, komma-getrennt (z.B. "A,B,C") |
Die Table-ID dieser Tabelle kommt als DOKU_TABLE_ID in die .env.
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
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.