regintel mcp for VS Code
io.github.ad0750/regintel-mcp
MCP server for the RegIntel API: regulatory data across 41 jurisdictions, 212 regulations.
client:VS Code
transport:stdio
runtime:pypi
Install regintel mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "regintel-api-key",
"description": "REGINTEL_API_KEY",
"password": true
}
],
"servers": {
"regintel-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"regintel-mcp"
],
"env": {
"REGINTEL_API_KEY": "${input:regintel-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