fastbcp mcp for VS Code
io.github.arpe-io/fastbcp-mcp
MCP server for FastBCP — high-performance parallel database export to files and cloud
client:VS Code
transport:stdio
runtime:pypi
Install fastbcp mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fastbcp-path",
"description": "FASTBCP_PATH",
"password": true
},
{
"type": "promptString",
"id": "fastbcp-timeout",
"description": "FASTBCP_TIMEOUT",
"password": true
},
{
"type": "promptString",
"id": "fastbcp-log-dir",
"description": "FASTBCP_LOG_DIR",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"fastbcp-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"fastbcp-mcp"
],
"env": {
"FASTBCP_PATH": "${input:fastbcp-path}",
"FASTBCP_TIMEOUT": "${input:fastbcp-timeout}",
"FASTBCP_LOG_DIR": "${input:fastbcp-log-dir}",
"LOG_LEVEL": "${input:log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs