Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Access Coupler.io data flows configured with OpenClaw destination to list flows, get schemas, and query data via OAuth-secured read-only API.
Access Coupler.io data flows configured with OpenClaw destination to list flows, get schemas, and query data via OAuth-secured read-only API.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Read-only data access via Coupler.io's MCP server. Author: Coupler.io Team Homepage: coupler.io
mcporter CLI installed and on PATH Coupler.io account with at least one data flow configured to OpenClaw destination
mcporter call mcp-coupler-io-mcp.list-dataflows mcporter call mcp-coupler-io-mcp.get-dataflow dataflowId=<uuid> mcporter call mcp-coupler-io-mcp.get-schema executionId=<exec-id> mcporter call mcp-coupler-io-mcp.get-data executionId=<exec-id> query="SELECT * FROM data LIMIT 10"
Endpoint verification: This skill connects to auth.coupler.io (OAuth) and mcp.coupler.io (MCP data). These are official Coupler.io endpoints. You can verify them via your Coupler.io account (AI integrations page). Transport: This MCP uses streamable HTTP, not SSE. If you see "SSE error" in output, ignore the misleading label โ it's still HTTP.
Do not use mcporter config add followed by mcporter auth separately โ this creates a config entry without auth metadata and causes a 401 loop. Instead, do it all in one command: mcporter auth --http-url https://mcp.coupler.io/mcp --persist config/mcporter.json This auto-detects OAuth, opens the browser for Coupler.io login (PKCE flow), and saves the server definition + tokens on success. To re-authenticate or clear stale tokens: mcporter auth --http-url https://mcp.coupler.io/mcp --persist config/mcporter.json --reset
After auth, check config/mcporter.json. mcporter won't use cached tokens unless the entry has "auth": "oauth". It should look like: { "mcpServers": { "mcp-coupler-io-mcp": { "baseUrl": "https://mcp.coupler.io/mcp", "auth": "oauth" } } } If "auth": "oauth" is missing, add it manually.
mcporter list mcp-coupler-io-mcp Should return 4 tools: get-data, get-schema, list-dataflows, get-dataflow. Note: The server name is auto-generated as mcp-coupler-io-mcp from the URL. Use this name in all subsequent commands.
mcporter handles token refresh automatically on 401 errors. No manual intervention needed. If you need to force a fresh token: mcporter auth mcp-coupler-io-mcp --reset
List all data flows with OpenClaw destination. mcporter call mcp-coupler-io-mcp.list-dataflows --output json
Get flow details including lastSuccessfulExecutionId. mcporter call mcp-coupler-io-mcp.get-dataflow dataflowId=<uuid> --output json
Get column definitions. Column names are in columnName (e.g., col_0, col_1). mcporter call mcp-coupler-io-mcp.get-schema executionId=<exec-id>
Run SQL on flow data. Table is always data. mcporter call mcp-coupler-io-mcp.get-data executionId=<exec-id> query="SELECT col_0, col_1 FROM data WHERE col_2 > 100 LIMIT 50" Always sample first (LIMIT 5) to understand structure before larger queries.
# 1. List flows, find ID mcporter call mcp-coupler-io-mcp.list-dataflows --output json # 2. Get execution ID mcporter call mcp-coupler-io-mcp.get-dataflow dataflowId=<id> --output json # 3. Check schema mcporter call mcp-coupler-io-mcp.get-schema executionId=<exec-id> # 4. Query mcporter call mcp-coupler-io-mcp.get-data executionId=<exec-id> query="SELECT * FROM data LIMIT 10"
Read-only: cannot modify flows, sources, or data Only flows with OpenClaw destination are visible Tokens expire in 2 hours (mcporter refreshes automatically)
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.