Skip to content
VS Code

Sentor for VS Code

io.github.nikx-tech/sentor-mcp

Score sentiment toward specific entities in text. Cluster documents and name topics.

client:VS Code transport:stdio runtime:pypi

Install Sentor in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sentor-api-key",
      "description": "SENTOR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sentor-base-url",
      "description": "SENTOR_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "sentor-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "sentor-mcp"
      ],
      "env": {
        "SENTOR_API_KEY": "${input:sentor-api-key}",
        "SENTOR_BASE_URL": "${input:sentor-base-url}"
      }
    }
  }
}

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

Sentor in other clients