A Model Context Protocol (MCP) server that provides conversational interface for the exploration and analysis of RDF (Turtle) based Knowledge Graph in Local File mode or SPARQL Endpoint mode.
{
"mcpServers": {
"mcp-rdf-explorer": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides conversational interface for the exploration and analysis of RDF (Turtle) based Knowledge Graph in Local File mode or SPARQL Endpoint mode.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 280 days ago. 50 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Mcp Rdf Explorer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides conversational interface for the exploration and analysis of RDF (Turtle) based Knowledge Graph in Local File mode or SPARQL Endpoint mode. This server facilitates communication between AI applications (hosts/clients) and RDF data, making graph exploration and analyzing graph data through SPARQL queries. A perfect tool for knowledge graph research and AI data preparation.
The server implements SPARQL queries and search functionality:
execute_on_endpoint
endpoint (str): The SPARQL endpoint URL to query.query (str): The SPARQL query to execute.ctx (Context): The FastMCP context object.sparql_query
query (str): The SPARQL query to execute.ctx (Context): The FastMCP context object.use_service (bool): Whether to use a SERVICE clause for federated queries in local mode (default: True).graph_stats
ctx (Context): The FastMCP context object.count_triples
ctx (Context): The FastMCP context object.full_text_search
search_term (str): The term to search for.ctx (Context): The FastMCP context object.health_check
ctx (Context): The FastMCP context object.get_mode
ctx (Context): The FastMCP context object.The server exposes the following resources:
schema://all: Retrieve schema information (classes and properties) from the graph.
queries://{template_name}: Retrieve a predefined SPARQL query template by name.
explore://{query_name}: Execute an exploratory SPARQL query by name and return results in JSON.
query_name (str): The name of the exploratory query (e.g., 'classes', 'relationships/URI').explore://report: Generate a Markdown report of exploratory queries.
The server exposes the following prompts:
analyze_graph_structure: Initiate an analysis of the graph structure with schema data.
find_relationships: Generate a SPARQL query to find relationships for a given subject.
text_to_sparql: Convert a text prompt to a SPARQL query and execute it, with token limit checks.
prompt (str): The text prompt to convert to SPARQL.