Skip to content
VS Code

Inflectiv for VS Code

io.github.inflectiv/inflectiv-mcp-server

Search, build and manage Inflectiv datasets and AI agents, plus ChainAware on-chain intelligence.

client:VS Code transport:stdio runtime:npm

Install Inflectiv in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "inflectiv-api-key",
      "description": "INFLECTIV_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "inflectiv-base-url",
      "description": "INFLECTIV_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "inflectiv-wallet-private-key",
      "description": "INFLECTIV_WALLET_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "inflectiv-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@inflectiv-ai/inflectiv-mcp"
      ],
      "env": {
        "INFLECTIV_API_KEY": "${input:inflectiv-api-key}",
        "INFLECTIV_BASE_URL": "${input:inflectiv-base-url}",
        "INFLECTIV_WALLET_PRIVATE_KEY": "${input:inflectiv-wallet-private-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Inflectiv in other clients