groupdocs annotation mcp for VS Code
io.github.groupdocs-annotation/groupdocs-annotation-mcp
MCP server for GroupDocs.Annotation — add, list, update, remove document annotations via AI agents.
client:VS Code
transport:stdio
runtime:nuget
Install groupdocs annotation mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "groupdocs-mcp-storage-path",
"description": "GROUPDOCS_MCP_STORAGE_PATH",
"password": true
},
{
"type": "promptString",
"id": "groupdocs-mcp-output-path",
"description": "GROUPDOCS_MCP_OUTPUT_PATH",
"password": true
},
{
"type": "promptString",
"id": "groupdocs-license-path",
"description": "GROUPDOCS_LICENSE_PATH",
"password": true
},
{
"type": "promptString",
"id": "groupdocs-metered-public-key",
"description": "GROUPDOCS_METERED_PUBLIC_KEY",
"password": true
},
{
"type": "promptString",
"id": "groupdocs-metered-private-key",
"description": "GROUPDOCS_METERED_PRIVATE_KEY",
"password": true
}
],
"servers": {
"groupdocs-annotation-mcp": {
"type": "stdio",
"command": "dnx",
"args": [
"GroupDocs.Annotation.Mcp",
"--yes"
],
"env": {
"GROUPDOCS_MCP_STORAGE_PATH": "${input:groupdocs-mcp-storage-path}",
"GROUPDOCS_MCP_OUTPUT_PATH": "${input:groupdocs-mcp-output-path}",
"GROUPDOCS_LICENSE_PATH": "${input:groupdocs-license-path}",
"GROUPDOCS_METERED_PUBLIC_KEY": "${input:groupdocs-metered-public-key}",
"GROUPDOCS_METERED_PRIVATE_KEY": "${input:groupdocs-metered-private-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs