skosmos-mcp
The skosmos-mcp server provides an MCP interface for AI assistants to browse, search, and traverse SKOS vocabularies via the Skosmos REST API.
Vocabulary Management
list_vocabularies: List all available vocabularies, optionally filtered by language.get_vocabulary: Retrieve metadata and top concepts for a specific vocabulary.
Concept Lookup
get_concept: Full concept details including broader, narrower, and related concepts.get_concept_label/labels: All labels (prefLabel, altLabel, hiddenLabel) for a concept URI.concept_path: Hierarchy path from a concept up to its root.
Search & Discovery
search_concepts: Full-text search across one or all vocabularies, with wildcard, pagination, and language filtering support.autocomplete: Prefix-based concept label suggestions.resolve_label: Map a plain-text label back to matching concept URIs.
Hierarchical & Graph Traversal
broader_concepts,narrower_concepts,related_concepts: BFS traversal up, down, or across concept relationships with configurable depth.traverse_concepts: Mixed BFS traversal combining any combination of broader, narrower, and/or related relationships in one query.All traversal tools include cycle detection and duplicate elimination.
Additional Capabilities
Multi-instance support: All tools accept an optional
server_urlparameter (whenSKOSMOS_TOOL_SERVER_URL_ALLOWED=true) to query different Skosmos instances in the same session.Performance: In-memory caching with configurable TTL, retry logic with exponential backoff, and HTTP timeouts.
Deployment: Supports stdio (local) or HTTP server (remote/web) modes.
Resources: Direct URI-based access via
skosmos://vocabularies,skosmos://{vocid}, andskosmos://{vocid}/{encodedUri}.
Click 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., "@skosmos-mcpsearch for 'climate' in the yso vocabulary"
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.
skosmos-mcp
A production-quality Model Context Protocol (MCP) server that wraps the Skosmos REST API, enabling AI assistants to navigate and query SKOS vocabularies. Also includes SPARQL query capabilities for direct RDF data access.
Features
17 MCP tools covering vocabulary browsing, concept lookup, full-text search, label resolution, BFS traversal, and schema-guided assistance
4 SPARQL tools for direct SPARQL query execution, updates, graph discovery, and query templates
3 MCP resources for direct URI-based access to vocabularies and concepts
BFS traversal engine with configurable depth cap, cycle detection, and duplicate elimination
TTL-based in-memory cache to avoid redundant API calls
Retry logic with exponential backoff for 5xx and network errors
AbortController timeout on every HTTP request
Strict TypeScript (strict mode,
noUncheckedIndexedAccess,exactOptionalPropertyTypes)Zod-validated inputs on all tools
stdio transport — reads from stdin, writes to stdout; all logging goes to stderr
StreamableHTTP transport — HTTP server at
/mcpfor remote or web-based MCP clients
Related MCP server: skill4agent MCP Server
Installation
npm install
npm run buildOr run directly with tsx:
npm run devDocker / Docker Compose
Build and run the Streamable HTTP MCP server in a container:
docker compose up --build -dThis starts the Streamable HTTP MCP server on port 3000 and uses Docker Compose's restart: unless-stopped policy so it will come back up automatically after crashes. The image defaults to the Finto endpoints, runs the HTTP MCP server on 0.0.0.0:3000, and enables alternate Skosmos/SPARQL connections by default. The container logs a warning at startup when those options are enabled because allowing other endpoints can be a security risk. The container reads the same environment variables as the local app, so copy .env.example to .env if you want to override those defaults.
Container Images from GitHub Container Registry
Releases publish two container image variants to GitHub Container Registry (GHCR):
HTTP variant (for remote access via HTTP):
docker pull ghcr.io/jsilvanus/skosmos-mcp:http
docker pull ghcr.io/jsilvanus/skosmos-mcp:http-latest
# Or use a specific release version:
docker pull ghcr.io/jsilvanus/skosmos-mcp:v0.2.1-httpStdio variant (for local stdio MCP protocol):
docker pull ghcr.io/jsilvanus/skosmos-mcp:stdio
docker pull ghcr.io/jsilvanus/skosmos-mcp:stdio-latest
# Or use a specific release version:
docker pull ghcr.io/jsilvanus/skosmos-mcp:v0.2.1-stdioEach release publishes both variants automatically. Choose the one that matches your use case:
HTTP variant: Runs an HTTP server on port 3000, suitable for remote access or web-based MCP clients
Stdio variant: Uses stdin/stdout for the MCP protocol, suitable for local integration with AI assistants or other MCP clients
Configuration
Copy .env.example to .env and fill in values:
SKOSMOS_BASE_URL=https://api.finto.fi # required
SKOSMOS_DEFAULT_VOCABULARY= # optional
SKOSMOS_DEFAULT_LANGUAGE=en
SKOSMOS_TIMEOUT=30000
SKOSMOS_USER_AGENT=skosmos-mcp/0.2.0
SKOSMOS_CACHE_TTL=300
SKOSMOS_MAX_TRAVERSAL_DEPTH=5
SKOSMOS_TOOL_SERVER_URL_ALLOWED=true
# SPARQL Configuration (optional)
SPARQL_ENDPOINT_URL=https://api.finto.fi/sparql
SPARQL_USERNAME=
SPARQL_PASSWORD=
SPARQL_ALLOW_OTHER_ENDPOINTS=trueVariable | Default | Description |
| (required) | Base URL of the Skosmos instance |
| — | Default vocabulary id when not specified in a tool call |
|
| Default language code for labels |
|
| HTTP request timeout in milliseconds |
|
| User-Agent header sent with API requests |
|
| Cache entry TTL in seconds |
|
| Hard cap on BFS traversal depth |
|
| When |
|
| Log level: debug, info, warn, error (written to stderr) |
|
| TCP port for the StreamableHTTP server |
|
| Bind address for the StreamableHTTP server |
| — | SPARQL endpoint URL (optional; enables SPARQL tools) |
| — | Username for SPARQL endpoint HTTP Basic auth (optional) |
| — | Password for SPARQL endpoint HTTP Basic auth (optional) |
|
| When |
MCP Tools Reference
Vocabulary Tools
list_vocabularies
List all available vocabularies.
Parameter | Type | Required | Description |
| string | no | Language code for labels |
get_vocabulary
Get vocabulary metadata and top concepts.
Parameter | Type | Required | Description |
| string | yes | Vocabulary identifier (e.g. |
| string | no | Language code |
Concept Tools
get_concept
Fetch full concept details: labels, broader, narrower, related.
Parameter | Type | Required | Description |
| URL | yes | Concept URI |
| string | no | Vocabulary identifier (required if no default set) |
| string | no | Language code |
get_concept_label
Get all labels for a concept URI.
Parameter | Type | Required | Description |
| URL | yes | Concept URI |
| string | yes | Vocabulary identifier |
| string | no | Language code |
concept_path
Get the hierarchy path from a concept to its root.
Parameter | Type | Required | Description |
| URL | yes | Concept URI |
| string | yes | Vocabulary identifier |
| string | no | Language code |
Search Tools
search_concepts
Full-text search across one or all vocabularies.
Parameter | Type | Required | Description |
| string | yes | Search string (supports trailing |
| string | no | Limit to this vocabulary |
| string | no | Language code |
| integer | no | Max results |
| integer | no | Pagination offset |
autocomplete
Autocomplete concept labels by prefix.
Parameter | Type | Required | Description |
| string | yes | Label prefix |
| string | no | Limit to this vocabulary |
| string | no | Language code |
| integer | no | Max suggestions |
resolve_label
Resolve a label text to concept URIs.
Parameter | Type | Required | Description |
| string | yes | Label text to resolve |
| string | yes | Vocabulary identifier |
| string | no | Language code |
Labels Tool
labels
Get all labels (prefLabel, altLabel, hiddenLabel) for a concept URI.
Parameter | Type | Required | Description |
| URL | yes | Concept URI |
| string | yes | Vocabulary identifier |
| string | no | Language code |
Traversal Tools
All traversal tools use BFS with cycle detection. Depth is capped at Math.min(depth, SKOSMOS_MAX_TRAVERSAL_DEPTH).
broader_concepts
Traverse broader (parent) concepts.
Parameter | Type | Required | Description |
| URL | yes | Starting concept URI |
| string | yes | Vocabulary identifier |
| integer | no | Max traversal depth |
| string | no | Language code |
narrower_concepts
Traverse narrower (child) concepts.
Parameter | Type | Required | Description |
| URL | yes | Starting concept URI |
| string | yes | Vocabulary identifier |
| integer | no | Max traversal depth |
| string | no | Language code |
related_concepts
Traverse related concepts.
Parameter | Type | Required | Description |
| URL | yes | Starting concept URI |
| string | yes | Vocabulary identifier |
| integer | no | Max traversal depth |
| string | no | Language code |
traverse_concepts
BFS using a mix of relationship types.
Parameter | Type | Required | Description |
| URL | yes | Starting concept URI |
| string | yes | Vocabulary identifier |
| array | yes | One or more of: |
| integer | no | Max traversal depth |
| string | no | Language code |
Assistance Tools
vocabulary_schema_overview
Summarize a vocabulary's structure with top concepts, relationship hints, and suggested tasks for AI clients.
Parameter | Type | Required | Description |
| string | yes | Vocabulary identifier |
| string | no | Language code |
| boolean | no | Whether to include a top concept preview |
| integer | no | Maximum number of top concept previews |
query_guidance
Return task-oriented guidance for common SKOS vocabulary workflows such as exploration, hierarchy traversal, or label resolution.
Parameter | Type | Required | Description |
| string | yes | Vocabulary identifier |
| string | no | One of |
reconcile_concept
Resolve a label to one or more candidate concepts using Skosmos lookup and search.
Parameter | Type | Required | Description |
| string | yes | Label text to resolve |
| string | yes | Vocabulary identifier |
| string | no | Language code |
| string | no | Optional concept type filter |
| integer | no | Maximum number of matches |
suggest_sparql_templates
Return SKOS-oriented SPARQL templates for exploration, hierarchy tracing, labels, and related concepts.
Parameter | Type | Required | Description |
| string | no | Optional vocabulary identifier to include in the response |
| string | no | One of |
SPARQL Tools
SPARQL tools enable direct querying of RDF data. Set SPARQL_ENDPOINT_URL environment variable to enable these tools. Supports both SPARQL 1.1 Query and Update protocols, with optional HTTP Basic authentication.
See the Attribution section for licensing details about the SPARQL implementation.
execute_sparql_query
Execute a SPARQL query (SELECT, CONSTRUCT, ASK, DESCRIBE) against the configured endpoint.
Parameter | Type | Required | Description |
| string | yes | The SPARQL query to execute |
| URL | no | Optional custom SPARQL endpoint (overrides default) |
Example Query:
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?concept ?label
WHERE {
?concept a skos:Concept ;
skos:prefLabel ?label .
}
LIMIT 10execute_sparql_update
Execute a SPARQL update query (INSERT, DELETE, etc.) against the configured endpoint.
Parameter | Type | Required | Description |
| string | yes | The SPARQL update query to execute |
| URL | no | Optional custom SPARQL endpoint (overrides default) |
Example Update:
PREFIX ex: <http://example.org/>
INSERT DATA {
ex:subject1 ex:predicate1 "object1" .
}list_sparql_graphs
List all available named graphs in the SPARQL endpoint.
Parameter | Type | Required | Description |
| URL | no | Optional custom SPARQL endpoint (overrides default) |
Returns: JSON array of graph URIs.
sparql_query_templates
Get pre-built SPARQL query templates for common data exploration patterns.
Parameter | Type | Required | Description |
| string | yes | Template category: |
Categories:
exploration— Basic data discovery and statisticsproperty-paths— Complex graph navigation using SPARQL property pathsstatistics— Knowledge graph metrics and analysisvalidation— Data quality and consistency checksschema— Structure discovery and ontology exploration
MCP Resources
URI Pattern | Description |
| JSON list of all vocabularies |
| Vocabulary metadata for |
| Concept data (labels, broader, narrower, related) |
Traversal Examples
Get all ancestors of a concept (depth 3)
{
"tool": "broader_concepts",
"args": {
"uri": "http://www.yso.fi/onto/yso/p8966",
"vocabulary": "yso",
"depth": 3,
"lang": "en"
}
}Response includes nodes (with depth), edges (directed relationships), rootUri, and maxDepth.
Mixed traversal (broader + related)
{
"tool": "traverse_concepts",
"args": {
"uri": "http://www.yso.fi/onto/yso/p8966",
"vocabulary": "yso",
"relationships": ["broader", "related"],
"depth": 2
}
}Using Optional Server URL Parameter
All 13 MCP tools support an optional server_url parameter. When SKOSMOS_TOOL_SERVER_URL_ALLOWED=true is set in the environment, you can pass a server_url parameter to any tool to make it query a different Skosmos instance instead of the configured SKOSMOS_BASE_URL.
Example: Query a different Skosmos instance
{
"tool": "get_concept",
"args": {
"uri": "http://www.yso.fi/onto/yso/p8966",
"vocabulary": "yso",
"lang": "en",
"server_url": "https://alternative-skosmos.example.org"
}
}This allows a single MCP session to interact with multiple Skosmos instances. The server_url parameter is:
Optional on all tools
Ignored unless
SKOSMOS_TOOL_SERVER_URL_ALLOWED=true(default:false)Can be any valid URL pointing to a Skosmos instance with a compatible REST API
Why use this feature?
Query multiple Skosmos instances in parallel within a single session
Test against different Skosmos servers without restarting the MCP
Support scenarios where vocabularies are distributed across multiple instances
stdio (standard MCP deployment)
SKOSMOS_BASE_URL=https://skosmos.example.org node dist/index.jsStreamableHTTP
SKOSMOS_BASE_URL=https://skosmos.example.org MCP_HTTP_PORT=3000 node dist/http.jsThe server listens on http://<MCP_HTTP_HOST>:<MCP_HTTP_PORT>/mcp (default: http://127.0.0.1:3000/mcp).
Each POST request is handled as a stateless MCP session (no session ID). The SkosmosClient and CacheManager instances are shared across requests for the lifetime of the process.
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"skosmos": {
"command": "node",
"args": ["/path/to/skosmos-mcp/dist/index.js"],
"env": {
"SKOSMOS_BASE_URL": "https://skosmos.example.org",
"SKOSMOS_DEFAULT_LANGUAGE": "en"
}
}
}
}Development
npm run dev # run with tsx (no build)
npm run typecheck # check types without emitting
npm run test # run tests
npm run test:watch # watch mode
npm run build # compile to dist/
npm run lint # lint src/ and tests/Architecture
MCP Client (AI Assistant)
│ stdio (JSON-RPC)
▼
McpServer (SDK)
├── 17 Tools (Zod-validated)
└── 3 Resources
│
┌────┴────┐
│ │
TraversalEngine CacheManager
(BFS + cycle (TTL, per-type)
detection)
│
SkosmosClient
(fetch + retry
+ timeout)
│
Skosmos REST APIKey Design Decisions
No global mutable state: config, client, cache, and traversal engine are created once in
src/index.tsand passed via dependency injection.BFS traversal: uses a queue (not recursion) to ensure breadth-first ordering and avoid stack overflows.
Depth capping:
Math.min(requestedDepth, config.maxTraversalDepth)is applied in both the traversal engine and tool handlers.Cache keys include all relevant parameters:
vocabulary:${vocid}:${lang},label:${vocab}:${uri}:${lang}, etc.All logging to stderr — stdout is reserved exclusively for MCP JSON-RPC.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Attribution
SPARQL functionality in this project is derived from ramuzes/mcp-jena and is used under the MIT License.
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/jsilvanus/skosmos-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server