mcp for VS Code
com.the13f/mcp
Institutional 13F intelligence: 8,600+ managers, holdings, peer search, sector flows.
client:VS Code
transport:stdio
runtime:pypi
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "the13f-api-key",
"description": "THE13F_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "the13f-api-base-url",
"description": "THE13F_API_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "the13f-mcp-timeout",
"description": "THE13F_MCP_TIMEOUT",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"the13f-mcp"
],
"env": {
"THE13F_API_KEY": "${input:the13f-api-key}",
"THE13F_API_BASE_URL": "${input:the13f-api-base-url}",
"THE13F_MCP_TIMEOUT": "${input:the13f-mcp-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs