MCP FreeScout for VS Code
io.github.verygoodplugins/mcp-freescout
FreeScout ticket management with AI-powered analysis, search filters, and structured outputs.
client:VS Code
transport:stdio
runtime:npm
Install MCP FreeScout in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "freescout-url",
"description": "FREESCOUT_URL",
"password": true
},
{
"type": "promptString",
"id": "freescout-api-key",
"description": "FREESCOUT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "freescout-default-user-id",
"description": "FREESCOUT_DEFAULT_USER_ID",
"password": true
}
],
"servers": {
"mcp-freescout": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@verygoodplugins/mcp-freescout"
],
"env": {
"FREESCOUT_URL": "${input:freescout-url}",
"FREESCOUT_API_KEY": "${input:freescout-api-key}",
"FREESCOUT_DEFAULT_USER_ID": "${input:freescout-default-user-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs