grovs-io/mcp

๐ŸŽฏ Marketing
0 Views
0 Installs

๐Ÿ“‡ โ˜๏ธ - Deep linking, attribution, analytics, and campaign management for mobile apps with Grovs โ€” an open-source, privacy-first alternative to Branch and AppsFlyer. 16 tools for creating links, tracking installs and revenue, and configuring app settings.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "grovs-io-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "grovs-io-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

Grovs

Latest release MCP 1.0 Claude Code Cursor MIT License GitHub stars

MCP server for managing deep links, analytics, and app configuration on Grovs.
Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.

Website ยท Documentation ยท Issues


What is Grovs?

Grovs is an open-source, privacy-first growth platform for mobile apps โ€” a self-hostable alternative to Branch.io and AppsFlyer. It provides:

  • Deep Linking โ€” one link that routes users to the right content across iOS, Android, and web. Deferred deep links survive the install flow so users land on the right screen on first open.
  • Attribution โ€” deterministic, first-party install and event attribution. No fingerprinting, no data sharing with ad networks.
  • Revenue Analytics โ€” in-app purchases, subscriptions, and custom revenue events matched back to the campaign that drove the install.
  • Campaigns โ€” group links, track performance, and compare results across channels.

EU-hosted, open-source SDKs, 20M+ daily active users in production. See the backend repo for self-hosting.

What is this MCP server?

This is an MCP (Model Context Protocol) server that lets AI assistants manage your Grovs platform through natural language. Create deep links, check analytics, configure redirects, run campaigns โ€” without leaving your editor.

Quick Start

Claude Code

/plugin marketplace add grovs-io/mcp
/plugin install grovs@grovs

Installs the MCP server and skills that teach Claude how to use Grovs. On first use, a browser window opens for OAuth โ€” no API keys needed.

Cursor

Open Settings > MCP and add a new server:

{
  "mcpServers": {
    "grovs": {
      "url": "https://mcp.grovs.io/mcp"
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "grovs": {
      "serverUrl": "https://mcp.grovs.io/mcp"
    }
  }
}

VS Code (GitHub Copilot)

Add to your .vscode/mcp.json:

{
  "servers": {
    "grovs": {
      "type": "http",
      "url": "https://mcp.grovs.io/mcp"
    }
  }
}

ChatGPT Desktop

Open Settings > MCP Servers > Add Server and enter:

https://mcp.grovs.io/mcp

Self-Hosted

If you're running your own Grovs backend, run the MCP server locally and point your client to it:

git clone https://github.com/grovs-io/mcp.git
cd mcp
npm install && npm run build
npm start

Or with Docker:

docker build -t grovs-mcp .
docker run -p 8080:8080 grovs-mcp

Then use http://localhost:8080/mcp as the server URL in any of the client configs above.

All clients will trigger an OAuth flow on first use โ€” a browser window opens to authenticate with your Grovs account.

Configuration

VariableDefaultDescription
PORT8080Server port
GROVS_API_URLhttps://mcp.grovs.ioGrovs backend URL (override for self-hosted)
PUBLIC_URLhttp://localhost:8080Public URL of this MCP server (used for OAuth callbacks)

Copy .env.example to .env for local development.

Tools

ToolDescription
get_statusAccount info, instances, projects, and domains
get_usageUsage metrics and subscription status for an instance
create_projectCreate a new instance with production and test projects
create_linkCreate a deep link with metadata, tags, and custom data
get_linkGet full details of a link by path
update_linkUpdate a link's metadata, tags, or redirects
archive_linkDeactivate a link (irreversible)
search_linksSearch and list links with pagination and filters
get_analytics_overviewProject-level metrics: views, installs, opens, revenue
get_link_analyticsPer-link daily metrics
get_top_linksTop performing links ranked by views
create_campaignCreate a campaign to group related links
list_campaignsList campaigns with aggregated metrics
archive_campaignArchive a campaign and deactivate its links
configure_redirectsSet per-platform redirect behavior (App Store, Play Store, web)
configure_sdkConfigure iOS/Android SDK settings (bundle ID, team ID, etc.)

Architecture

MCP Client (Claude Code, Cursor, etc.)
    โ”‚
    โ”‚  MCP protocol over HTTP
    โ–ผ
Express app (src/app.ts)
    โ”‚
    โ”œโ”€โ”€ OAuth flow (/authorize, /callback, /register)
    โ”‚
    โ””โ”€โ”€ MCP endpoint (/mcp)
            โ”‚
            โ”œโ”€โ”€ Tool registration (src/server.ts)
            โ”‚       Zod schema validation + runWithAuth error boundary
            โ”‚
            โ”œโ”€โ”€ Handlers (src/tools/handlers.ts)
            โ”‚       Business logic, plain functions, throw on error
            โ”‚
            โ”œโ”€โ”€ Formatters (src/tools/formatters.ts)
            โ”‚       Convert API JSON to human-readable text
            โ”‚
            โ””โ”€โ”€ API client (src/api-client.ts)
                    HTTP calls to Grovs backend

Development

npm run dev          # start with auto-reload
npm run build        # compile TypeScript
npm test             # run tests (186 tests)
npm run test:watch   # run tests in watch mode
npm run lint         # ESLint
npm run format       # Prettier

See CONTRIBUTING.md for project structure and PR guidelines.

SDKs

PlatformRepository
iOSgrovs-io/grovs-ios
Androidgrovs-io/grovs-android
React Nativegrovs-io/grovs-react-native
Fluttergrovs-io/grovs-flutter

License

MIT

Related MCP Servers

acamolese/google-search-console-mcp

๐Ÿ โ˜๏ธ - Google Search Console MCP server: query performance data, inspect URLs, check indexing, and generate brandable HTML SEO audit reports with a 30/60/90-day roadmap. Read-only OAuth scope, installable via uvx mcp-google-search-console.

๐ŸŽฏ Marketing0 views
AdsMCP/tiktok-ads-mcp-server

๐Ÿ โ˜๏ธ - A Model Context Protocol server for TikTok Ads API integration, enabling AI assistants to manage campaigns, analyze performance metrics, handle audiences and creatives with OAuth authentication flow.

๐ŸŽฏ Marketing0 views
Agent-Prod/muze-mcp

๐ŸŽ–๏ธ ๐Ÿ โ˜๏ธ - Run your ecommerce ads from Claude & ChatGPT. Meta, Google, Amazon and Shopify: 150+ tools to read performance, inspect campaigns, research competitor ads, and take confirm-gated writes (pause, budgets, launches) that always stage paused. Hosted; connect via OAuth or an API key at https://backend.muzecmo.com/mcp

๐ŸŽฏ Marketing0 views
AIOProductOS/studio-mcp

๐ŸŽ–๏ธ ๐Ÿ“‡ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Turns your AI host into a product videographer: scripted screen recordings of your own web app with a visible gliding cursor, camera zooms, highlight callouts, captions, and designed scene transitions, plus marketing-grade screenshots; deterministic dark-frame cleanup and MP4/GIF export. Free and fully local. npx -y @aioproductoscom/mcp-studio

๐ŸŽฏ Marketing0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.