Version 4.43 or later needs to be installed to add the server automatically
Use cases
About
Model Context Protocol server for Hackle.
| Attribute | Details |
|---|---|
| Docker Image | mcp/hackle |
| Author | hackle-io |
| Repository | https://github.com/hackle-io/hackle-mcp |
| Attribute | Details |
|---|---|
| Dockerfile | https://github.com/hackle-io/hackle-mcp/blob/5ecf4dd4443da7c20315f39a26705538ff0d1b59/Dockerfile |
| Commit | 5ecf4dd4443da7c20315f39a26705538ff0d1b59 |
| Docker Image built by | Docker Inc. |
| Docker Scout Health Score | |
| Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/hackle --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub |
| Licence | MIT License |
| Tools provided by this Server | Short Description |
|---|---|
active-user-series | Retrieves time-series data of active users. |
analytics-chart-detail | fetch analytics chart detail. |
analytics-chart-list | fetch data analytics chart list. |
data-report-detail | fetch data report detail. |
data-report-list | fetch data report list. |
experiment-detail | Retrieves detailed information for a specific A/B test experiment. |
experiment-list | Fetches a paginated list of A/B test experiments with search functionality. |
in-app-message-detail | Retrieves detailed information for a specific in-app message. |
in-app-message-list | Fetches a paginated list of in-app messages with search functionality. |
push-message-detail | Retrieves detailed information for a specific push message. |
push-message-list | Fetches a paginated list of push messages with search functionality. |
remote-config-create | Creates an empty remote config. |
remote-config-detail | Fetch remote config detail. |
remote-config-list | Fetch Remote Config list. |
remote-config-update | Updates remote config's content. |
remote-config-update-description | Updates remote config's description. |
remote-config-update-user-identifier-criteria | Updates remote config's user identifier criteria. |
retention-series | Retrieves time-series data of user retention. |
stickiness-series | Retrieves time-series data of user stickiness (return visit frequency). |
active-user-seriesRetrieves time-series data of active users. Available in daily, weekly, and monthly units.
| Parameters | Type | Description |
|---|---|---|
unit | string | |
date | stringoptional | End date in YYYY-MM-DD format. |
analytics-chart-detailfetch analytics chart detail. You can visualize the chart using this tool's result.
| Parameters | Type | Description |
|---|---|---|
chartId | number | Chart id |
chartType | string | Type of the chart. Will throw an error if given chartId's chart type is different from chartType. |
analytics-chart-listfetch data analytics chart list.
| Parameters | Type | Description |
|---|---|---|
chartType | stringoptional | |
pageNumber | numberoptional | |
pageSize | numberoptional | |
searchKeyword | stringoptional |
data-report-detailfetch data report detail.
| Parameters | Type | Description |
|---|---|---|
dataReportId | number |
data-report-listfetch data report list.
experiment-detailRetrieves detailed information for a specific A/B test experiment.
| Parameters | Type | Description |
|---|---|---|
experimentId | number |
experiment-listFetches a paginated list of A/B test experiments with search functionality.
| Parameters | Type | Description |
|---|---|---|
pageNumber | numberoptional | |
pageSize | numberoptional | |
searchKeyword | stringoptional | name, description, or experimentKey of an experiment. |
in-app-message-detailRetrieves detailed information for a specific in-app message.
| Parameters | Type | Description |
|---|---|---|
inAppMessageId | number |
in-app-message-listFetches a paginated list of in-app messages with search functionality.
| Parameters | Type | Description |
|---|---|---|
pageNumber | numberoptional | |
pageSize | numberoptional | |
searchKeyword | stringoptional | name, description, or campaignKey of an in-app message. |
push-message-detailRetrieves detailed information for a specific push message.
| Parameters | Type | Description |
|---|---|---|
pushMessageId | number |
push-message-listFetches a paginated list of push messages with search functionality.
| Parameters | Type | Description |
|---|---|---|
pageNumber | numberoptional | |
pageSize | numberoptional | |
searchKeyword | stringoptional | name, description, or campaignKey of a push message. |
remote-config-createCreates an empty remote config. It is recommended to update an existing RC first if there is an associated RC with the one you want to create since the total number of RC is limited.
| Parameters | Type | Description |
|---|---|---|
body | object |
remote-config-detailFetch remote config detail.
| Parameters | Type | Description |
|---|---|---|
remoteConfigId | number | Remote config's id. You can get this information by using Remote Config List Tool. |
remote-config-listFetch Remote Config list.
| Parameters | Type | Description |
|---|---|---|
pageNumber | numberoptional | |
pageSize | numberoptional | |
searchKeyword | stringoptional | |
status | stringoptional |
remote-config-updateUpdates remote config's content.
| Parameters | Type | Description |
|---|---|---|
body | object | |
remoteConfigId | number | Remote config's id. |
remote-config-update-descriptionUpdates remote config's description. The change will be applied to both production and development environment.
| Parameters | Type | Description |
|---|---|---|
body | object | |
remoteConfigId | number | Remote config's id. |
remote-config-update-user-identifier-criteriaUpdates remote config's user identifier criteria. The change will be applied to both production and development environment.
| Parameters | Type | Description |
|---|---|---|
body | object | |
remoteConfigId | number | Remote config's id. |
retention-seriesRetrieves time-series data of user retention. Available in daily, weekly, and monthly units.
| Parameters | Type | Description |
|---|---|---|
unit | string | |
date | stringoptional | End date in YYYY-MM-DD format. |
stickiness-seriesRetrieves time-series data of user stickiness (return visit frequency). Available in weekly and monthly units.
| Parameters | Type | Description |
|---|---|---|
unit | string | |
date | stringoptional | End date in YYYY-MM-DD format. |
{
"mcpServers": {
"hackle": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"API_KEY",
"mcp/hackle"
],
"env": {
"API_KEY": "YOUR_API_KEY"
}
}
}
}