toolstem mcp server for VS Code
io.github.toolstem/toolstem-mcp-server
Financial intelligence MCP for AI agents — DCF, ratios, comparisons. Pre-computed signals.
client:VS Code
transport:stdio
runtime:npm
Install toolstem mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fmp-api-key",
"description": "FMP_API_KEY",
"password": true
}
],
"servers": {
"toolstem-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"toolstem-mcp-server"
],
"env": {
"FMP_API_KEY": "${input:fmp-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs