disclosures for VS Code
io.github.carrotly-ai/disclosures
Corporate disclosures from 26 official sources across 21 jurisdiction routes via ten tools.
client:VS Code
transport:stdio
runtime:npm
Install disclosures in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "disclosures-user-agent",
"description": "DISCLOSURES_USER_AGENT",
"password": true
},
{
"type": "promptString",
"id": "companies-house-api-key",
"description": "COMPANIES_HOUSE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "opendart-api-key",
"description": "OPENDART_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "edinet-api-key",
"description": "EDINET_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "dbd-api-key",
"description": "DBD_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "disclosures-acknowledge-asx-terms",
"description": "DISCLOSURES_ACKNOWLEDGE_ASX_TERMS",
"password": true
},
{
"type": "promptString",
"id": "disclosures-acknowledge-pse-terms",
"description": "DISCLOSURES_ACKNOWLEDGE_PSE_TERMS",
"password": true
}
],
"servers": {
"disclosures": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"disclosures"
],
"env": {
"DISCLOSURES_USER_AGENT": "${input:disclosures-user-agent}",
"COMPANIES_HOUSE_API_KEY": "${input:companies-house-api-key}",
"OPENDART_API_KEY": "${input:opendart-api-key}",
"EDINET_API_KEY": "${input:edinet-api-key}",
"DBD_API_KEY": "${input:dbd-api-key}",
"DISCLOSURES_ACKNOWLEDGE_ASX_TERMS": "${input:disclosures-acknowledge-asx-terms}",
"DISCLOSURES_ACKNOWLEDGE_PSE_TERMS": "${input:disclosures-acknowledge-pse-terms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs