This server also exposes an MCP endpoint, giving an LLM client the same module search, dependency-graph, code-analysis and maintenance data shown in this dashboard. It's split into small, single-purpose tools instead of one big "give me everything" call, so a client only fetches the detail it actually needs for a given question - look up a module's contents, its dependencies and its code are three separate tools rather than one reply carrying all three every time.
https://mcp.ommd.info/mcp
l10n-spain or account-invoicing.
claude mcp add --transport http oghcollector https://mcp.ommd.info/mcp
.mcp.json (project-scoped, checked into git){
"mcpServers": {
"oghcollector": {
"type": "http",
"url": "https://mcp.ommd.info/mcp"
}
}
}
Claude Desktop and claude.ai connect to custom connectors from Anthropic's cloud, not from
your own machine — the URL below must be reachable over the public internet
(a localhost URL will not work here; use the
local bridge
tab instead for local development).
https://mcp.ommd.info/mcp
Click Add, then enable the connector for a conversation from the + menu in the chat composer.
.cursor/mcp.json (project) or ~/.cursor/mcp.json (global)
{
"mcpServers": {
"oghcollector": {
"url": "https://mcp.ommd.info/mcp"
}
}
}
Cursor runs locally, so a localhost URL works fine here. Fully quit and reopen
Cursor afterwards — MCP servers are only loaded at startup.
.vscode/mcp.json (workspace) or the user profile mcp.json
{
"servers": {
"oghcollector": {
"type": "http",
"url": "https://mcp.ommd.info/mcp"
}
}
}
Open the Command Palette → MCP: Add Server… to have VS Code write this
for you, or edit the file directly. VS Code runs locally too, so localhost
works fine.
Any client that only supports launching a local stdio server (no native remote/HTTP
option) can still reach this endpoint through
mcp-remote,
a small bridge run with npx. Since it runs as a local process on your own
machine, this also works when the endpoint is on localhost — use it for
local development with clients whose connector UI requires a public URL.
{
"mcpServers": {
"oghcollector": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.ommd.info/mcp"]
}
}
}
Requires Node.js 18+. If the URL uses plain http:// on a host other than
localhost, add the --allow-http flag to the args array.