DVBase Server
FreeNot checkedEnables Claude to access Ninox database schema and data, supporting table inspection, data queries, and context retrieval.
About
Enables Claude to access Ninox database schema and data, supporting table inspection, data queries, and context retrieval.
README
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.
Installing DVBase Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Digital-Vereinfacht/dvbase-mcp-serverFAQ
Is DVBase Server MCP free?
Yes, DVBase Server MCP is free — one-click install via Unyly at no cost.
Does DVBase Server need an API key?
No, DVBase Server runs without API keys or environment variables.
Is DVBase Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install DVBase Server in Claude Desktop, Claude Code or Cursor?
Open DVBase Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
by wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
by madhurprashPostgres
Query your database in natural language
by AnthropicPostgreSQL
Read-only database access with schema inspection.
by modelcontextprotocolCompare DVBase Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All data MCPs
