mcp-setup

Use when setting up MCP servers for the first time or verifying MCP configuration. Ensures token-efficient and context-graph MCP servers are properly installed and configured with API keys.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "mcp-setup" with this command: npx skills add ingpoc/skills/ingpoc-skills-mcp-setup

MCP Setup

Configure required MCP servers for agent-harness token efficiency and learning loops.

Required MCP Servers

ServerPurposeAPI Key
token-efficientCSV/log processing, sandbox execution (98% token savings)None
context-graphSemantic decision trace searchVoyage AI

Setup Instructions

Quick setup - Run scripts/setup-all.sh in your project directory:

cd /path/to/your/project
bash ~/.claude/skills/mcp-setup/scripts/setup-all.sh

This will:

  1. Create mcp/ folder in your project
  2. Clone and build token-efficient MCP
  3. Clone and install context-graph MCP
  4. Prompt for Voyage AI API key
  5. Generate .mcp.json in project root

Manual setup (if needed):

1. Install token-efficient MCP in mcp/

mkdir -p mcp
git clone https://github.com/gurusharan/token-efficient-mcp.git mcp/token-efficient-mcp
cd mcp/token-efficient-mcp
npm install
npm run build

2. Install context-graph MCP in mcp/

git clone https://github.com/gurusharan/agent-harness.git mcp/context-graph-mcp
cd mcp/context-graph-mcp/context-graph-mcp  # or just mcp/context-graph-mcp
pip install -r requirements.txt

3. Create .mcp.json in project root

{
  "mcpServers": {
    "token-efficient": {
      "command": "node",
      "args": ["mcp/token-efficient-mcp/dist/index.js"]
    },
    "context-graph": {
      "command": "uv",
      "args": ["--directory", "mcp/context-graph-mcp", "run", "python", "server.py"],
      "env": {
        "VOYAGE_API_KEY": "your_key_here"
      }
    }
  }
}

4. Restart Claude Code

After setup, restart Claude Code to load MCP servers.

Verification

After setup, test:

# Via context-graph MCP
context_store_trace(decision="Test setup", category="general")
context_list_categories()

Troubleshooting

IssueSolution
module 'chromadb' not foundpip install chromadb
VOYAGE_API_KEY not foundSet env var or add to mcp.json env
Tools not availableRestart Claude Code
srt: command not foundInstall token-efficient MCP

Scripts

ScriptPurpose
scripts/setup-all.shUse this - Auto-detects paths, sets up both MCP servers
scripts/verify-setup.shCheck if MCP servers are working
scripts/install-token-efficient.shStandalone token-efficient MCP installer

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

scroll-storyteller

No summary provided by upstream source.

Repository SourceNeeds Review
General

browser-testing

No summary provided by upstream source.

Repository SourceNeeds Review
General

postgresql-skill

No summary provided by upstream source.

Repository SourceNeeds Review
General

terminal-ui-design

No summary provided by upstream source.

Repository SourceNeeds Review