list_connections
Retrieve all configured data connections from the Polytomic platform to manage data pipelines and synchronization workflows.
Instructions
List all data connections in Polytomic.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/polytomic_mcp/server.py:60-64 (handler)The 'list_connections' tool handler is decorated with '@mcp.tool()' and performs an API request to '/connections' to fetch and return the list of connections.
@mcp.tool() async def list_connections() -> str: """List all data connections in Polytomic.""" result = await polytomic_request("/connections") return json.dumps(result, indent=2)