Skip to content
VS Code

shippost mcp for VS Code

io.github.ryankramer/shippost-mcp

Twitter/X tools for AI agents — read timelines, post tweets, search, and engage

client:VS Code transport:stdio runtime:pypi

Install shippost mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "twitter-access-token",
      "description": "TWITTER_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "twitter-refresh-token",
      "description": "TWITTER_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "twitter-client-id",
      "description": "TWITTER_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shippost-api-key",
      "description": "SHIPPOST_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "shippost-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "shippost-mcp"
      ],
      "env": {
        "TWITTER_ACCESS_TOKEN": "${input:twitter-access-token}",
        "TWITTER_REFRESH_TOKEN": "${input:twitter-refresh-token}",
        "TWITTER_CLIENT_ID": "${input:twitter-client-id}",
        "SHIPPOST_API_KEY": "${input:shippost-api-key}"
      }
    }
  }
}

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

shippost mcp in other clients