deeptap-mcp
MCP server to configure and verify iOS Universal Links and Android App Links via DeepTap API, enabling coding agents to manage deep-link domains.
README
deeptap-mcp
MCP server for DeepTap — configure iOS Universal Links and Android App Links, and verify them, directly from your coding agent (Claude Code, etc.).
It's a thin wrapper over the DeepTap public REST API: each tool is one API call. Point your agent at it, and it can create a deep-link domain, wire up the iOS/Android config, and run a pre-flight check on the generated apple-app-site-association and assetlinks.json files.
Install
Get an API key from Dashboard → Settings → API Keys at https://deeptap.io/dashboard/settings, then add the server:
claude mcp add --scope user --transport stdio deeptap \
--env DEEPTAP_API_KEY=dt_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx \
-- npx -y deeptap-mcp
Or run it directly: DEEPTAP_API_KEY=dt_live_… npx -y deeptap-mcp.
Configuration
| Env var | Required | Default | Description |
|---|---|---|---|
DEEPTAP_API_KEY |
yes | — | API key (dt_live_…), sent as Authorization: Bearer. |
DEEPTAP_API_URL |
no | https://deeptap.io |
Base URL of the DeepTap API (override for self-hosting/staging). |
Tools
| Tool | API call | Purpose |
|---|---|---|
get_account |
GET /me |
Account, plan, and live limits. Call first to check capacity. |
list_domains |
GET /domains |
All domains with their iOS/Android config and file URLs. |
get_domain |
GET /domains/:id |
One domain by id (e.g. dom_42). |
create_domain |
POST /domains |
Create a subdomain and configure iOS/Android. |
update_domain |
PUT /domains/:id |
Partial update of iOS/Android config. |
verify_domain |
GET /domains/:id/verify |
Pre-flight: fetch and validate AASA + assetlinks. |
Every response includes a meta block with the plan, domain/link usage, and rate-limit state — the agent reads it to report limits.
Typical flow
get_account— check the plan and how many domains are available.create_domain—{ "name": "myapp", "ios": { "team_id": "ABCDE12345", "bundle_id": "com.example.myapp", "paths": ["*"], "fallback_url": "https://example.com" }, "android": { "package_name": "com.example.myapp", "sha256_fingerprints": ["AA:BB:…"] } }verify_domain— confirm the generated files are reachable and match the app identifiers.
verify_domain checks everything verifiable server-side (file reachability, JSON validity, appID/package match, fingerprints, paths). Rebuilding the app and on-device checks are still required — the agent should also confirm associatedDomains / package config in your project (app.json, Xcode).
Development
npm install
npm run build # tsc -> dist/
npm start # run the built server on stdio
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.