You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-8Lines changed: 34 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,17 +2,35 @@
2
2
3
3
# Coupler.io official MCP server
4
4
The Coupler.io MCP Server is a Model Context Protocol (MCP) server that provides seamless integration with Coupler.io APIs.
5
+
With Coupler.io MCP Server, you can analyze multi-channel marketing, financial, sales, e-commerce, and other business data within Claude by connecting to your Coupler.io data flows — query marketing, sales, and finance metrics from hundreds of sources. Fetch and transform raw data from platforms like Google Ads, Facebook, HubSpot, and Salesforce into actionable intelligence for smarter, faster decision-making with accurate, up-to-date business information.
5
6
6
-
**⚠️ Alpha Software Warning**
7
-
This repo contains early alpha software under active development. Features are incomplete and subject to breaking changes.
8
7
9
8
## Use Cases
10
-
- Extracting and analyzing data from Coupler.io data flows.
9
+
Get data from your Coupler.io data flows and ask your AI tool questions about it, like you would ask your fellow data analyst:
10
+
11
+
### Marketing:
12
+
1. What's our overall customer acquisition cost across all paid channels this quarter compared to last quarter? I need this for the board meeting.
13
+
2. Show me the ROI breakdown by marketing channel for the past 6 months. I need to reallocate our annual budget.
14
+
3. Which campaigns are contributing most to our pipeline revenue? I want to double down on what's working.
15
+
16
+
### Sales:
17
+
1. Can you pull the sales pipeline report for this month? I need to see how many deals are in each stage and the total value at each stage.
18
+
2. What are our conversion rates from lead to opportunity and from opportunity to closed-won for the last quarter? How do they compare to our targets?
19
+
3. How many deals are expected to close this month based on their probability scores? What's our forecasted revenue vs our monthly target?
20
+
21
+
### Finance:
22
+
1. Check the profit for this quarter, compare it to last quarter, and provide a breakdown by department.
23
+
2. Could you provide a cash flow report for the last 30 days, including all incoming and outgoing transactions?
24
+
3. Share the current accounts receivable status and tell me how many overdue invoices we have and which customers owe the most.
11
25
12
26
## Prerequisites
13
27
1. Install [Docker](https://www.docker.com/) to run the server in a container.
14
28
2. Make sure Docker is running.
15
-
3. Get a [Coupler.io Personal Access Token](https://app.coupler.io/app/ai_features)
29
+
3. Get a [Coupler.io Personal Access Token](https://app.coupler.io/app/mcp/).
30
+
31
+
**OR**
32
+
33
+
Build a .dxt file using the command below and use it to install the local MCP.
16
34
17
35
## Running the server
18
36
### Claude Desktop
@@ -39,18 +57,26 @@ This repo contains early alpha software under active development. Features are i
39
57
```
40
58
41
59
NOTE: `"--pull=always"` will ensure you always have the latest image by pulling it from the registry.
42
-
Remove this line, if you're offline or if you specifically want to use the image you've already pulled previously.
60
+
Remove this line if you're offline or if you specifically want to use the image you've already pulled previously.
43
61
44
62
## Tools
45
63
### Data flows
46
-
-**get-data** - Gets the result of a data flow run as a SQLite file and executes a read-only query on it. Currently, only data flows built from a dashboard or dataset template are supported.
64
+
-**get-data** - Gets the result of a data flow run as a SQLite file and executes a read-only query on it. To get the data from a Coupler.io data flow, you need the data flow to have an AI destination.
47
65
-`dataflowId`: Data flow ID (`string`, **required**)
48
66
-`executionId`: Data flow run ID (`string`, **required**)
49
67
-`query`: Query to run on the data flow SQLite file (`string`, **required**)
50
68
51
69
-**get-schema** - Gets the data flow schema file. Currently, only data flows built from a dashboard or dataset template are supported.
52
70
-`dataflowId`: Data flow ID (`string`, **required**)
53
71
-`executionId`: Data flow run ID (`string`, **required**)
72
+
73
+
-**list-dataflows** – Gets the list of data flows that have an AI destination.
74
+
-`dataflowId`: Data flow ID (`string`, **required**)
75
+
-`executionId`: Data flow run ID (`string`, **required**)
76
+
77
+
-**get-dataflow** – Gets the metadata about the data flow, such as sources, data connections, last successfull execution, and error details (if present).
78
+
-`dataflowId`: Data flow ID (`string`, **required**)
79
+
-`executionId`: Data flow run ID (`string`, **required**)
0 commit comments