Skip to content
VS Code

Stellar Agent Search for VS Code

io.github.berkingurcan/stellar-agent-search

Discover and rank Stellar 8004 agents with a read-only MCP server and fail-closed contract probes.

client:VS Code transport:stdio runtime:npm

Install Stellar Agent Search in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stellar-network",
      "description": "STELLAR_NETWORK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "explorer-base-url",
      "description": "EXPLORER_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stellar-rpc-url",
      "description": "STELLAR_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "verify-onchain",
      "description": "VERIFY_ONCHAIN",
      "password": true
    }
  ],
  "servers": {
    "stellar-agent-search": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "stellar-agent-search"
      ],
      "env": {
        "STELLAR_NETWORK": "${input:stellar-network}",
        "EXPLORER_BASE_URL": "${input:explorer-base-url}",
        "STELLAR_RPC_URL": "${input:stellar-rpc-url}",
        "VERIFY_ONCHAIN": "${input:verify-onchain}"
      }
    }
  }
}

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

Stellar Agent Search in other clients