Skip to content
VS Code

universal connector mcp for VS Code

io.github.teodormcp/universal-connector-mcp

Security-first MCP server that connects any OpenAPI, GraphQL, gRPC or SOAP API to AI agents.

client:VS Code transport:stdio runtime:pypi

Install universal connector mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ucmcp-allowed-hosts",
      "description": "UCMCP_ALLOWED_HOSTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ucmcp-apis-config",
      "description": "UCMCP_APIS_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ucmcp-cache-ttl",
      "description": "UCMCP_CACHE_TTL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ucmcp-block-private-ips",
      "description": "UCMCP_BLOCK_PRIVATE_IPS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "universal-connector-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "universal-connector-mcp"
      ],
      "env": {
        "UCMCP_ALLOWED_HOSTS": "${input:ucmcp-allowed-hosts}",
        "UCMCP_APIS_CONFIG": "${input:ucmcp-apis-config}",
        "UCMCP_CACHE_TTL": "${input:ucmcp-cache-ttl}",
        "UCMCP_BLOCK_PRIVATE_IPS": "${input:ucmcp-block-private-ips}",
        "GITHUB_TOKEN": "${input:github-token}"
      }
    }
  }
}

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

universal connector mcp in other clients