Documentation Index
Fetch the complete documentation index at: https://docs.jelou.ai/llms.txt
Use this file to discover all available pages before exploring further.
MCP (Model Context Protocol) lets you connect your Databases database directly with AI tools. Once connected, you can query, create, and modify records using natural language from your favorite tool.
How does it work?
Databases generates an MCP URL that acts as a bridge between your database and the AI tool. The tool connects to this URL to access the CRUD operations of your collections. The URL remains active until you regenerate it manually from the settings.
To access the MCP configuration, go to Settings > MCP from the left sidebar.
ChatGPT
Claude
Cursor
VS Code
Other clients
Go to Settings → Connectors in ChatGPT
In ChatGPT, open Settings and select Connectors to manage custom connectors.
Enable Developer Mode
Enable Developer Mode in the Connectors → Advanced settings section to accept custom connector URLs.
Generate the Databases MCP URL
On the Databases MCP page, copy the generated URL.
Create the connector
In ChatGPT Connectors:
- Select Create connector and add a name
- Set authentication to No Authentication
- Paste the MCP URL and check I trust this application
- Click Create
Enable Developer Mode in the chat
Open a new chat, go to More → Developer Mode to activate the connector.
Add the resource
Click Add sources, enable your Databases database, and interact with your data.
Generate the Databases MCP URL
On the Databases MCP page, copy the generated URL.
Open Add Connectors in Claude Desktop
In Claude Desktop, go to Add connectors to manage integrations.
Add the Databases connector
Paste the Databases MCP URL and follow the instructions to complete the connection.
Automatic installation:Generate the Databases MCP URL
On the Databases MCP page, copy the generated URL.
Click Add to Cursor
Click the Add to Cursor button or copy the provided Cursor deeplink.
Approve the installation
When Cursor opens:
- Review the connector details and click Install
- Allow Cursor to restart if necessary
- Open a new chat and enable the Databases tools
Manual installation:Add this JSON in Settings → Cursor Settings → MCP → Add new global MCP server:{
"datum": {
"url": "https://datum.jelou.cloud/YOUR_UNIQUE_ID/mcp"
}
}
Generate the Databases MCP URL
On the Databases MCP page, copy the generated URL.
Create the .vscode/mcp.json file
In your workspace, create the .vscode/mcp.json file with the Databases server configuration:{
"servers": {
"datum": {
"type": "http",
"url": "https://datum.jelou.cloud/YOUR_UNIQUE_ID/mcp"
}
}
}
Complete the configuration
Use the Command Palette to:
- Run MCP: Add Server, choose HTTP, and provide the Databases URL
- Select Workspace Settings to create
.vscode/mcp.json if it doesn’t exist
Avoid including secrets directly in the configuration file. Use environment variables or input files for credentials.
Generate the Databases MCP URL
On the Databases MCP page, copy the generated URL.
Connect from any MCP client
Use the generated URL with the transport method supported by your client. Most clients support HTTP-based MCP connections.