@datalanguage/datagraphs-mcp-server
OfficialClick 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., "@@datalanguage/datagraphs-mcp-serversearch for machine learning in dataset 'tech_articles'"
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.
@datalanguage/datagraphs-mcp-server
An MCP (Model Context Protocol) server that exposes the Data Graphs knowledge graph platform to AI assistants such as Claude, ChatGPT, Cursor, and other MCP-compatible clients.
Prerequisites
Node.js 18+
A Data Graphs project with an API key
Related MCP server: Neo4j GraphRAG MCP Server
Installation
npm install @datalanguage/datagraphs-mcp-serverOr run directly with npx:
npx @datalanguage/datagraphs-mcp-serverConfiguration
Obtaining Credentials
To generate the API key, client ID, and client secret:
Sign in to Data Graphs and open your project.
Click Manage Project.
Go to Applications and click Add Application.
Once the application is created, the API key, client ID, and client secret will be displayed.
Important: The client secret is shown only once at creation time. Copy it immediately and store it somewhere secure — if lost, you will need to rotate the credentials or create a new application to obtain a new secret.
Your project ID can also be found on the project page in Data Graphs.
Environment Variables
The server reads credentials from environment variables:
Variable | Required | Description |
| Yes | Your Data Graphs project ID |
| Yes | API key for authentication |
| For GQL | OAuth client ID (required for |
| For GQL | OAuth client secret (required for |
MCP Client Setup
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"datagraphs": {
"command": "npx",
"args": ["-y", "@datalanguage/datagraphs-mcp-server"],
"env": {
"DATAGRAPHS_PROJECT_ID": "your-project-id",
"DATAGRAPHS_API_KEY": "your-api-key"
}
}
}
}Claude Code
claude mcp add datagraphs -- npx -y @datalanguage/datagraphs-mcp-serverThen set the required environment variables in your shell before launching Claude Code.
Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"datagraphs": {
"command": "npx",
"args": ["-y", "@datalanguage/datagraphs-mcp-server"],
"env": {
"DATAGRAPHS_PROJECT_ID": "your-project-id",
"DATAGRAPHS_API_KEY": "your-api-key"
}
}
}
}Tools
The server provides the following tools:
list_datasets
List all datasets available in the Data Graphs project.
Parameter | Type | Description |
| number | Number of results per page |
| number | Page number to return |
search_concepts
Search for concepts (nodes) across datasets using text queries, filters, and facets.
Parameter | Type | Description |
| string | Dataset ID to search (defaults to all datasets) |
| string | Text search query |
| string | NQL filter expression |
| string[] | Property names to return facet counts for |
| number | Number of results per page (default 10) |
| number | Page number to return (default 1) |
| string | Sort order, e.g. |
| string[] | Relationship properties to embed (use |
| string[] | Specific fields to return for each concept |
| boolean | Include created and last modified dates |
get_concept
Get a single concept (node) by its URN identifier.
Parameter | Type | Description |
| string | Concept URN, e.g. |
| string[] | Relationship properties to embed (use |
| string[] | Specific fields to return |
| boolean | Include created and last modified dates |
graph_search
Execute a GQL graph query against the knowledge graph. Requires DATAGRAPHS_CLIENT_ID and DATAGRAPHS_CLIENT_SECRET.
Parameter | Type | Description |
| string | GQL query, e.g. |
search_transactions
Search the transaction/audit log for the project.
Parameter | Type | Description |
| string | NQL filter expression |
| number | Number of results per page |
| number | Page number to return |
| string | Sort order, e.g. |
get_model
Get the currently active data model for the project. Takes no parameters.
Development
git clone <repo-url>
cd datagraphs-client-mcp-server
npm install
npm startLicense
UNLICENSED
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.
Latest Blog Posts
- 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/datalanguage/datagraphs-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server