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

Cog MCP

MCP Server for semantic code search with Metal GPU acceleration

Unclaimed MIT last commit 7 months ago devtools
53Fair

Scored 3 months ago · breakdown

About Cog MCP

Cog MCP is an MCP server published by vitorcalvi in the Developer Tools category: mCP Server for semantic code search with Metal GPU acceleration. It has been installed 0 times through Conduid.

The repository has 6 stars and 0 forks, with the last commit 7 months ago. 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 cog-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 Cog MCP

Powered by Claude · Grounded in docs

I know everything about Cog 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.

README

Cog

Semantic code search for AI assistants. Powered by Nomic embeddings on Apple Silicon.

What it does

  • Search code by meaning - Find functions that "handle authentication" not just keyword matches
  • Analyze structure - Extract functions, classes, and dependencies from any file
  • Generate embeddings - 768-dim vectors on Metal GPU (M1/M2/M3)

Requirements

  • macOS with Apple Silicon
  • Python 3.12+
  • Node.js 18+
  • uv

Install

git clone https://github.com/vitorcalvi/cog.git
cd cog

# Python engine
cd packages/core && uv sync

# MCP server
cd ../mcp && npm install && npm run build

Index your code

cd packages/core
uv run cog-index ./your/project

Connect to OpenCode

Edit ~/.config/opencode/opencode.json:

{
  "mcp": {
    "cog": {
      "type": "local",
      "command": ["node", "/ABSOLUTE/PATH/TO/cog/packages/mcp/dist/index.js"],
      "environment": {
        "COG_CORE_DIR": "/ABSOLUTE/PATH/TO/cog/packages/core",
        "COG_DB_PATH": "/ABSOLUTE/PATH/TO/cog/packages/core/cog_memory"
      },
      "enabled": true
    }
  }
}

Replace /ABSOLUTE/PATH/TO with your actual path.

Use in OpenCode

> Search my codebase for user authentication
> Analyze the structure of src/api.py
> Find database connection functions

Tools

Tool Description
search_code Semantic search - finds code by meaning
analyze_structure Extract functions and classes from a file
generate_embedding Get 768-dim vector for any text

Test it works

Package Tests Coverage
Python Core 60 100%
TypeScript MCP 35 98.7%

Run tests:

cd packages/core
uv run pytest
cd packages/mcp
npm test

License

MIT © Vitor Calvi

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Cog MCP

How do I install Cog MCP?

Run npx cog-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 Cog MCP safe to use with an AI agent?

Its trust score is 53 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 Cog MCP still maintained?

The last commit was 7 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.