mcp for VS Code
net.topicforge/mcp
Generate programmatic SEO articles, topic clusters, FAQ schema, and batch jobs via TopicForge.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "topicforge-api-key",
"description": "TOPICFORGE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "content-api-base-uri",
"description": "CONTENT_API_BASE_URI",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@topicforge/mcp"
],
"env": {
"TOPICFORGE_API_KEY": "${input:topicforge-api-key}",
"CONTENT_API_BASE_URI": "${input:content-api-base-uri}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs