UK FCA Financial Services Register for VS Code
io.github.robertalsop/fca-register
UK FCA Financial Services Register with cleaning - 19 tools for firm and individual data.
client:VS Code
transport:stdio
runtime:pypi
Install UK FCA Financial Services Register in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fca-api-email",
"description": "FCA_API_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "fca-api-key",
"description": "FCA_API_KEY",
"password": true
}
],
"servers": {
"fca-register": {
"type": "stdio",
"command": "uvx",
"args": [
"bartram-companies-house"
],
"env": {
"FCA_API_EMAIL": "${input:fca-api-email}",
"FCA_API_KEY": "${input:fca-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