KosmoKrator

database

Pinecone MCP Gateway for AI Agents

Expose Pinecone tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

7 functions 5 read 2 write Bearer token auth

Pinecone MCP Gateway

Expose Pinecone to MCP clients with `kosmokrator mcp:serve --integration=pinecone`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=pinecone --write=deny --json
{
  "mcpServers": {
    "kosmokrator-pinecone": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=pinecone",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=pinecone --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__pinecone__pinecone_list_indexes pinecone.pinecone_list_indexes Read read
integration__pinecone__pinecone_get_index pinecone.pinecone_get_index Read read
integration__pinecone__pinecone_create_index pinecone.pinecone_create_index Write write
integration__pinecone__pinecone_upsert_vectors pinecone.pinecone_upsert_vectors Write write
integration__pinecone__pinecone_query_vectors pinecone.pinecone_query_vectors Read read
integration__pinecone__pinecone_list_collections pinecone.pinecone_list_collections Read read
integration__pinecone__pinecone_get_current_user pinecone.pinecone_get_current_user Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.