Hootsuite for VS Code
io.github.asklokesh/hootsuite-mcp-server
MCP server for Hootsuite API integration
client:VS Code
transport:stdio
runtime:pypi
Install Hootsuite in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hootsuite-api-key",
"description": "HOOTSUITE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "hootsuite-api-url",
"description": "HOOTSUITE_API_URL",
"password": true
}
],
"servers": {
"hootsuite-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"hootsuite-mcp-server"
],
"env": {
"HOOTSUITE_API_KEY": "${input:hootsuite-api-key}",
"HOOTSUITE_API_URL": "${input:hootsuite-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs