DVBase MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DVBase MCP Servershow the schema of the Rechnungen table"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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)
Related MCP server: mysql-explorer
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-server2. Dependencies installieren
npm install3. Konfiguration (.env)
cp .env.example .env
nano .envDann 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=30014. Bauen & starten
npm run build
npm startTesten 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 nginx6. 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 startupVerbindung herstellen
Claude.ai (Browser)
Gehe zu claude.ai → Settings → Integrations → MCP
Trage ein:
URL:
https://eure-domain.de/mcpAuth: Bearer Token → euer
MCP_AUTH_TOKEN
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 |
| Zeigt alle Tabellen der DVBase |
| Felder, Typen, Optionen einer Tabelle |
| Entwickler-Kontextwissen (braucht Doku-Tabelle) |
| Schema + Kontext kombiniert |
| 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables querying and managing a CRM database through natural language conversations with Claude Desktop.
- Flicense-qualityDmaintenanceEnables Claude to interact with a MySQL database by automatically discovering its schema and retrieving full table data for analysis.
- Alicense-qualityBmaintenanceEnables Claude Code to execute read-only queries and DML operations on Oracle and PostgreSQL databases, and to list or describe database tables.201MIT
- AlicenseAqualityCmaintenanceProvides Claude with read-only access to local development databases (Postgres, MySQL, SQLite) to inspect schemas, run SELECT queries, and explain query plans without leaving the conversation.5MIT
Related MCP Connectors
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
Talk to your live-events CRM (campaigns, analytics, paid ads, segments) in Claude and ChatGPT.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Digital-Vereinfacht/dvbase-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server