1. Conduid
  2. Developer Tools
  3. MCP
MCP server · Developer Tools

MCP

MCP servers

Unclaimed last commit 6 months ago devtools
51Fair

Scored yesterday · breakdown

About MCP

MCP is an MCP server published by Cortexa-LLC in the Developer Tools category: mCP servers. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about MCP

Powered by Claude · Grounded in docs

I know everything about MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.0v0.1.0

README

MCP Servers

A collection of standalone Model Context Protocol servers written in Go. Each server is independently buildable and installable — pick only what you need. Released under the MIT No Attribution License.

Available Servers

Server Description CGO
markitdown Convert documents to Markdown (HTML, PDF, DOCX, XLSX, PPTX, images) No
kg Project knowledge graph — store and query code entities across sessions. Supports multi-scope graphs for monorepos. Yes
graph LR
    Client["MCP Client\n(Claude Code / Claude Desktop)"]
    MD["markitdown-mcp\nDocument converter"]
    KG["kg\nKnowledge graph"]

    Client -->|stdio| MD
    Client -->|stdio| KG

Each server is a self-contained Go binary with its own go.mod. No server depends on another.

Quick Install

# Install all servers
curl -fsSL https://raw.githubusercontent.com/Cortexa-LLC/mcp/main/install.py | python3

# Install a specific server
curl -fsSL https://raw.githubusercontent.com/Cortexa-LLC/mcp/main/install.py | python3 - --mcp kg
curl -fsSL https://raw.githubusercontent.com/Cortexa-LLC/mcp/main/install.py | python3 - --mcp markitdown

# From a clone
python3 install.py --mcp kg
python3 install.py --mcp markitdown
python3 install.py              # installs all

Install dir defaults (override with --prefix DIR or INSTALL_DIR=...):

Platform Default
macOS /usr/local/bin
Linux /usr/local/bin (may need sudo)
Windows %LOCALAPPDATA%\Programs\mcp

Manual Build (per server)

cd src/markitdown && make install
cd src/kg         && make install          # requires a C compiler (CGO)

Prerequisites

  • Go 1.24+install
  • kg only: C compiler — Xcode CLT on macOS (xcode-select --install), gcc/clang on Linux
  • markitdown OCR (optional): Tesseract 5+ (brew install tesseract)

MCP Configuration

After installing, add the servers to your MCP client:

Claude Desktop

{
  "mcpServers": {
    "markitdown": {
      "command": "/usr/local/bin/markitdown-mcp"
    },
    "kg": {
      "command": "/usr/local/bin/kg",
      "args": ["server", "--stdio"]
    }
  }
}

Config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Claude Code (.mcp.json in project root)

Recommended for kg — place .mcp.json in each project root so Claude Code spawns kg with the correct working directory, ensuring it opens that project's .ai/knowledge.db and not another project's graph.

{
  "mcpServers": {
    "markitdown": { "command": "/usr/local/bin/markitdown-mcp" },
    "kg":         { "command": "/usr/local/bin/kg", "args": ["server", "--stdio"] }
  }
}

markitdown is stateless and can be configured globally in ~/.claude/settings.json if preferred.

Server Details

  • markitdown — No CGO, no system dependencies for core formats. OCR for images requires Tesseract (optional, degrades gracefully). → Integration guide

  • kg — Requires CGO (bundles KuzuDB statically). Each project gets its own isolated graph at .ai/knowledge.db, auto-discovered by walking up the directory tree. Supports OpenAI or Ollama embeddings for semantic search (optional). → CLI reference · Integration guide & CLAUDE.md patterns

Docs

Document Description
docs/kg-cli-reference.md Full kg CLI reference — all commands, flags, entity types, Cypher examples
docs/kg-claude-integration.md KG patterns for CLAUDE.md, reducing re-investigation, decision logging, cross-session checkpointing
docs/markitdown-claude-integration.md Reading PDFs, DOCX, spreadsheets, and URLs; combining with the KG

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About MCP

How do I install MCP?

Run npx mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is MCP safe to use with an AI agent?

Its trust score is 51 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is MCP still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.