Connect an AI Agent
Tabsdata's agentic workflow uses an MCP server so a coding agent builds and runs your workflows for you. Install it into your agent before deploying a server. Claude Code and Codex are currently supported.
Start the agent from a shell whose virtual environment has Tabsdata installed.
note
The MCP server needs tabsdata-agent, which ships as its own package and is not yet
pulled in by tabsdata[all]. Install it if you have not done so yet:
- uv
- pip
uv pip install tabsdata-agent
pip install tabsdata-agent
Install Tabsdata covers this as part of the full install, so skip this if you followed that page.
- Claude Code
- Codex
claude mcp add tabsdata -- python -m tabsdatak.ag.mcp -
- Linux / macOS
- Windows PowerShell
- Windows cmd.exe
codex mcp add tabsdata -- "$(python -c 'import sys; print(sys.executable)')" -m tabsdatak.ag.mcp -
codex mcp add tabsdata -- (python -c "import sys; print(sys.executable)") -m tabsdatak.ag.mcp -
for /f "delims=" %i in ('python -c "import sys; print(sys.executable)"') do codex mcp add tabsdata -- "%i" -m tabsdatak.ag.mcp -