DataCore A2A for VS Code
vn.datacore/datacore-a2a
Chuẩn hoá địa chỉ Việt Nam và tra cứu doanh nghiệp theo tên hoặc mã số thuế, qua DataCore A2A.
client:VS Code
transport:stdio
runtime:pypi
Install DataCore A2A in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "datacore-a2a-url",
"description": "DATACORE_A2A_URL",
"password": true
},
{
"type": "promptString",
"id": "datacore-mandate",
"description": "DATACORE_MANDATE",
"password": true
},
{
"type": "promptString",
"id": "datacore-skills",
"description": "DATACORE_SKILLS",
"password": true
},
{
"type": "promptString",
"id": "datacore-timeout",
"description": "DATACORE_TIMEOUT",
"password": true
}
],
"servers": {
"datacore-a2a": {
"type": "stdio",
"command": "uvx",
"args": [
"datacore-a2a-mcp"
],
"env": {
"DATACORE_A2A_URL": "${input:datacore-a2a-url}",
"DATACORE_MANDATE": "${input:datacore-mandate}",
"DATACORE_SKILLS": "${input:datacore-skills}",
"DATACORE_TIMEOUT": "${input:datacore-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs