docs mcp for VS Code
io.github.acta-team/docs-mcp
Read-only MCP server for the official ACTA verifiable credentials documentation.
client:VS Code
transport:stdio
runtime:npm
Install docs mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "acta-docs-mcp-offline",
"description": "ACTA_DOCS_MCP_OFFLINE",
"password": true
},
{
"type": "promptString",
"id": "acta-docs-mcp-data-url",
"description": "ACTA_DOCS_MCP_DATA_URL",
"password": true
}
],
"servers": {
"docs-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@acta-team/docs-mcp"
],
"env": {
"ACTA_DOCS_MCP_OFFLINE": "${input:acta-docs-mcp-offline}",
"ACTA_DOCS_MCP_DATA_URL": "${input:acta-docs-mcp-data-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs