semarcy-mcp
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., "@semarcy-mcpExplain xDM data modeling concepts"
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.
semarcy-mcp
MCP server that provides AI assistants with RAG-powered access to Semarchy documentation (xDM, xDI, xDG). Connect it to Claude Desktop or any MCP-compatible client to search and retrieve relevant Semarchy docs.
Prerequisites
Related MCP server: RAG Knowledge MCP
Quick Start (Docker)
1. Clone the repo
git clone <repo-url> && cd semarcy-mcp2. Build the Docker image
The image includes pre-ingested documentation, so it's ready to use immediately.
docker build -t semarcy-mcp .3. Set up your API key
cp .env.example .envEdit .env and replace the placeholder with your actual Voyage AI key. This file is used by Docker (--env-file) and by local development (loaded automatically via python-dotenv).
4. Configure Claude Desktop
Add the server to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"semarcy-docs": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"--env-file", "/absolute/path/to/semarcy-mcp/.env",
"semarcy-mcp"
]
}
}
}Replace /absolute/path/to/semarcy-mcp/.env with the actual path to your .env file.
5. Restart Claude Desktop
You can now ask Claude questions about Semarchy xDM, xDI, and xDG.
Updating the Documentation Index
The Docker image includes pre-ingested documentation, so most users never need to re-ingest. If Semarchy updates their docs and you want the latest content:
docker run --rm --env-file .env -v semarcy-data:/data/chroma semarcy-mcp \
ingest --db-path /data/chroma --clearThen update your Claude Desktop config to mount the same volume:
{
"mcpServers": {
"semarcy-docs": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"--env-file", "/absolute/path/to/semarcy-mcp/.env",
"-v", "semarcy-data:/data/chroma",
"semarcy-mcp"
]
}
}
}Local Development (without Docker)
# Install dependencies
uv sync
# Set up your API key (python-dotenv loads this automatically)
cp .env.example .env
# Edit .env with your actual key
# Ingest docs (takes a while on first run)
uv run semarcy-mcp ingest
# Run the MCP server
uv run semarcy-mcp serve
# Test with MCP Inspector
mcp dev src/semarcy_mcp/server.pyAvailable MCP Tools
Tool | Description |
| Search Semarchy documentation with a natural language query. Returns relevant chunks with source URLs. |
| List available topic areas across Semarchy products. Useful for discovering what documentation is indexed. |
Environment Variables
Variable | Required | Description |
| Yes | Voyage AI API key for embedding search queries |
| No | Override ChromaDB storage path (default: |
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/abicyclerider/semarcy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server