Mcp Server Oxigraph — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Server Oxigraph (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server for Oxigraph, a fast and lightweight RDF triple store with SPARQL support.
Oxigraph is a high-performance in-memory or file-based RDF graph database written in Rust. This MCP server provides a Claude-friendly wrapper for accessing PyOxigraph (the Python bindings for Oxigraph) through the Model Context Protocol.
uv pip install mcp-server-oxigraphAdd the following to your Claude Desktop MCP configuration:
"oxigraph": {
"command": "uv",
"args": ["run", "mcp-server-oxigraph"],
"env": {}
}To set a specific default database location, add the OXIGRAPH_DEFAULT_STORE environment variable:
"oxigraph": {
"command": "uv",
"args": ["run", "mcp-server-oxigraph"],
"env": {
"OXIGRAPH_DEFAULT_STORE": "~/.claude/my_knowledge_graph.oxigraph"
}
}Oxigraph MCP is ideal for:
This MCP server provides:
Oxigraph is an open-source RDF triple store implemented in Rust. Key features include:
This MCP server uses PyOxigraph, the official Python bindings for Oxigraph.
The Oxigraph MCP server supports the following RDF serialization formats:
| Format | File Extension | MIME Type | Supports Named Graphs |
|---|---|---|---|
| Turtle | .ttl | text/turtle | No |
| N-Triples | .nt | application/n-triples | No |
| N-Quads | .nq | application/n-quads | Yes |
| TriG | .trig | application/trig | Yes |
| RDF/XML | .rdf | application/rdf+xml | No |
| N3 | .n3 | text/n3 | No |
You can retrieve this information programmatically using the oxigraph_get_supported_formats() function.
The server manages two types of default stores:
~/.mcp-server-oxigraph/default.oxigraphOXIGRAPH_DEFAULT_STORE environment variableOn startup, the server initializes both stores (if configured):
You don't need to explicitly create or open these stores - they're automatically initialized when the server starts. All operations that don't specify a store path will use the appropriate default store.
Once configured, you can use the Oxigraph MCP tools in Claude to work with RDF data:
oxigraph_create_named_node(iri: "http://example.org/subject")
oxigraph_create_named_node(iri: "http://example.org/predicate")
oxigraph_create_literal(value: "Object value")
oxigraph_create_quad(subject: subject, predicate: predicate, object: object)
oxigraph_add(quad: quad) oxigraph_query(query: "SELECT * WHERE { ?s ?p ?o } LIMIT 10") oxigraph_parse(data: "@prefix ex: <http://example.org/> . ex:a ex:b ex:c .", format: "turtle")
oxigraph_serialize(format: "ntriples")
oxigraph_get_supported_formats() oxigraph_create_store(store_path: "/path/to/my/custom.oxigraph")
oxigraph_query(query: "SELECT * WHERE { ?s ?p ?o }", store_path: "/path/to/my/custom.oxigraph")oxigraph_create_store: Create a new store (in-memory or file-based)oxigraph_open_store: Open an existing file-based storeoxigraph_close_store: Close a store and remove it from the manageroxigraph_backup_store: Create a backup of a storeoxigraph_restore_store: Restore a store from a backupoxigraph_optimize_store: Optimize a store for better performanceoxigraph_list_stores: List all managed storesNote: Most operations will work with the default store without needing to specify a store_path. For persistent storage, we recommend using the file path as the store_path for clarity.
oxigraph_create_named_node: Create a NamedNode for use in RDF statementsoxigraph_create_blank_node: Create a BlankNode for use in RDF statementsoxigraph_create_literal: Create a Literal for use in RDF statementsoxigraph_create_quad: Create a Quad (triple with optional graph)oxigraph_add: Add a quad to the storeoxigraph_add_many: Add multiple quads to the storeoxigraph_remove: Remove a quad from the storeoxigraph_remove_many: Remove multiple quads from the storeoxigraph_clear: Remove all quads from the storeoxigraph_quads_for_pattern: Query for quads matching a patternoxigraph_query: Execute a SPARQL query against the storeoxigraph_update: Execute a SPARQL update against the storeoxigraph_query_with_options: Execute a SPARQL query with custom optionsoxigraph_run_query: Run a SPARQL query or update against the storeoxigraph_parse: Parse RDF data and add to the storeoxigraph_serialize: Serialize the store to a stringoxigraph_import_file: Import RDF data from a fileoxigraph_export_graph: Export a graph to a fileoxigraph_get_supported_formats: Get a list of supported RDF formatsMIT License
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.