Skip to content
VS Code

Taranis AI for VS Code

io.github.taranis-ai/taranis-mcp-server

Search stories and discover OSINT sources in Taranis AI.

client:VS Code transport:stdio runtime:pypi

Install Taranis AI in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "taranis-api-url",
      "description": "TARANIS_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "taranis-access-token",
      "description": "TARANIS_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "taranis-username",
      "description": "TARANIS_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "taranis-password",
      "description": "TARANIS_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "taranis-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "taranis-mcp-server"
      ],
      "env": {
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "TARANIS_API_URL": "${input:taranis-api-url}",
        "TARANIS_ACCESS_TOKEN": "${input:taranis-access-token}",
        "TARANIS_USERNAME": "${input:taranis-username}",
        "TARANIS_PASSWORD": "${input:taranis-password}"
      }
    }
  }
}

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

Taranis AI in other clients