GraphDB
Provides read-only access to an Ontotext GraphDB repository.
GraphDB MCP Server
A Model Context Protocol server that provides read-only access to Ontotext GraphDB. This server enables LLMs to explore RDF graphs and execute SPARQL queries against a GraphDB instance.
Components
Tools
-
sparqlQuery
- Execute SPARQL queries against the connected GraphDB repository
- Input:
query(string): The SPARQL query to executegraph(string, optional): Specific graph IRI to targetformat(string, optional): Response format (json, xml, csv)
- All queries are executed in read-only mode
-
listGraphs
- Lists all graphs available in the repository
- No input parameters required
Resources
The server provides multiple views of the repository data:
-
Class List (
graphdb://<host>/repository/<repo>/classes)- Lists all RDF classes found in the repository with counts
-
Predicates (
graphdb://<host>/repository/<repo>/predicates)- Lists all predicates (properties) with usage counts
-
Statistics (
graphdb://<host>/repository/<repo>/stats)- Provides counts of subjects, predicates, objects, and triples
-
Sample Data (
graphdb://<host>/repository/<repo>/sample)- Shows a sample of triples from the repository
-
Graph Content (
graphdb://<host>/repository/<repo>/graph/<graphUri>)- Provides sample data from specific graphs along with metadata
Configuration
You can configure the server using environment variables by creating a .env file:
GRAPHDB_ENDPOINT=http://localhost:7200
GRAPHDB_REPOSITORY=myRepository
GRAPHDB_USERNAME=username
GRAPHDB_PASSWORD=password
Alternatively, you can provide the endpoint and repository as command-line arguments:
node dist/index.js http://localhost:7200 myRepository
The command-line arguments take precedence over environment variables.
Usage with Claude Desktop
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:
{
"mcpServers": {
"graphdb": {
"command": "node",
"args": [
"/path/to/mcp-server-graphdb/dist/index.js"
],
"env": {
"GRAPHDB_ENDPOINT": "http://localhost:7200",
"GRAPHDB_REPOSITORY": "myRepository",
"GRAPHDB_USERNAME": "username",
"GRAPHDB_PASSWORD": "password"
}
}
}
}
Replace the values with your specific GraphDB configuration.
Installation
# Clone the repository
git clone https://github.com/keonchennl/mcp-server-graphdb.git
cd mcp-server-graphdb
# Install dependencies
yarn install
# Build the project
yarn build
Example SPARQL Queries
Here are some example SPARQL queries you can run with this server:
- List all classes in the ontology:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?class ?label
WHERE {
{ ?class a rdfs:Class } UNION { ?class a owl:Class }
OPTIONAL { ?class rdfs:label ?label }
}
ORDER BY ?class
- List all properties for a specific class:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?property ?label ?range
WHERE {
?property rdfs:domain <http://example.org/YourClass> .
OPTIONAL { ?property rdfs:label ?label }
OPTIONAL { ?property rdfs:range ?range }
}
ORDER BY ?property
- Count instances by class:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?class (COUNT(?instance) AS ?count)
WHERE {
?instance a ?class
}
GROUP BY ?class
ORDER BY DESC(?count)
License
This MCP server is licensed under the GPL-3.0 License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the GNU GPL-3.0 License.
Related Servers
CoinGecko
Official CoinGecko API MCP Server for Crypto Price & Market Data, across 200+ blokchain networks and 8M+ tokens.
memory-mcp
A simple MCP server that stores and retrieves memories from multiple LLMs.
dbt
Official MCP server for dbt (data build tool) providing integration with dbt Core/Cloud CLI, project metadata discovery, model information, and semantic layer querying capabilities.
Database
Universal database MCP server supporting multiple database types including PostgreSQL, Redshift, CockroachDB, MySQL, RDS MySQL, Microsoft SQL Server, BigQuery, Oracle DB, and SQLite
CData Excel Online
A read-only MCP server for querying live data from Excel Online using CData's JDBC driver.
SQL Analyzer
Analyze, lint, and convert SQL dialects using SQLGlot.
Mongo-MCP
An MCP server for interacting with a MongoDB database.
CRM MCP Server
A production-ready MCP server for Customer Relationship Management (CRM) functionality, built with TypeScript and SQLite.
Veeva MCP Server by CData
A read-only MCP server by CData that enables LLMs to query live data from Veeva.
Claude Conversation Memory System
Provides searchable local storage for Claude conversation history, enabling context retrieval during sessions.
