hiveship mcp server for VS Code
io.github.sorcrr/hiveship-mcp-server
MCP server for AI coding agents to interact with the Hiveship issue tracker
client:VS Code
transport:stdio
runtime:npm
Install hiveship mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hiveship-api-url",
"description": "HIVESHIP_API_URL",
"password": true
},
{
"type": "promptString",
"id": "hiveship-api-token",
"description": "HIVESHIP_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "hiveship-workspace-id",
"description": "HIVESHIP_WORKSPACE_ID",
"password": true
},
{
"type": "promptString",
"id": "hiveship-web-url",
"description": "HIVESHIP_WEB_URL",
"password": true
}
],
"servers": {
"hiveship-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hiveship/mcp-server"
],
"env": {
"HIVESHIP_API_URL": "${input:hiveship-api-url}",
"HIVESHIP_API_TOKEN": "${input:hiveship-api-token}",
"HIVESHIP_WORKSPACE_ID": "${input:hiveship-workspace-id}",
"HIVESHIP_WEB_URL": "${input:hiveship-web-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs