Skip to content
VS Code

tweetkit x for VS Code

io.github.nsozturk/tweetkit-x

Post, delete & read on X (Twitter) using your own logged-in web session — no paid API.

client:VS Code transport:stdio runtime:pypi

Install tweetkit x in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tweetkit-cookie-keychain",
      "description": "TWEETKIT_COOKIE_KEYCHAIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tweetkit-cookie",
      "description": "TWEETKIT_COOKIE",
      "password": true
    }
  ],
  "servers": {
    "tweetkit-x": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "tweetkit-x"
      ],
      "env": {
        "TWEETKIT_COOKIE_KEYCHAIN": "${input:tweetkit-cookie-keychain}",
        "TWEETKIT_COOKIE": "${input:tweetkit-cookie}"
      }
    }
  }
}

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

tweetkit x in other clients