GXtract is a Model Context Protocol (MCP) server designed to integrate with VS Code and other compatible editors. It provides a suite of tools for interacting with the GroundX platform, enabling you to leverage its powerful document understanding capabilities directly within your development environment.
Server Config
{
"mcpServers": {
"gxtract": {
"command": "uv",
"type": "stdio",
"args": [
"--directory",
"DRIVE:\\path\\to\\your\\gxtract",
"--project",
"DRIVE:\\path\\to\\your\\gxtract",
"run",
"gxtract",
"--transport",
"stdio"
],
"env": {
"GROUNDX_API_KEY": "${env:GROUNDX_API_KEY}"
}
}
}
}