TrueSource for VS Code
io.github.hangeaiagent/truesource-mcp
First-hand market signals: filings, procurement wins, R&D expansion, macro data
client:VS Code
transport:stdio
runtime:pypi
Install TrueSource in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hunter-api-key",
"description": "HUNTER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "truesource-url",
"description": "TRUESOURCE_URL",
"password": true
},
{
"type": "promptString",
"id": "truesource-max-items",
"description": "TRUESOURCE_MAX_ITEMS",
"password": true
}
],
"servers": {
"truesource-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"truesource-mcp"
],
"env": {
"HUNTER_API_KEY": "${input:hunter-api-key}",
"TRUESOURCE_URL": "${input:truesource-url}",
"TRUESOURCE_MAX_ITEMS": "${input:truesource-max-items}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs