MCP: drive Alync from Claude or ChatGPT
Alync ships a remote MCP (Model Context Protocol) server. Connect it once and you can say "find me 20 dental-clinic leads and enrich their emails" in chat — the assistant does the API calls.
Endpoint
URL: https://api.alync.co/mcp
Auth: OAuth 2.1 (sign in via the dashboard — what Claude uses)
or X-API-Key: alync_live_... (or Authorization: Bearer alync_live_...)
Type: Streamable HTTP (stateless)OAuth needs no setup — the connector registers itself and you approve it once in the Alync dashboard. Static API keys are created in Settings → API Keys. Both are Scale plan and above.
Available tools
| Tool | What it does |
|---|---|
list_campaigns | List campaigns and their status |
get_campaign | One campaign incl. its AI-generated strategy |
create_campaign | New campaign from a plain-language offering |
generate_strategy | Derive ICP + per-platform searches, seed the query pool |
run_campaign_batch | Run the next sourcing batch (async) |
list_leads | Promoted leads with enriched contacts |
list_signals | Raw scored signals incl. rejection reasons |
enrich_campaign | Discover emails/socials/websites for leads (Growth+) |
Claude
Claude.ai (web/desktop)
- Go to Settings → Connectors → Add custom connector.
- Name:
Alync· URL:https://api.alync.co/mcp. Leave the OAuth Client ID/Secret fields empty — Claude registers itself automatically. - Click Connect: you’ll land in the Alync dashboard, sign in, and approve the connection (owner or admin, Scale plan and above).
- Back in Claude, enable the Alync connector in a chat and ask it to list your campaigns.
Revoke access any time — the connection appears in Settings → Audit log, and removing the connector in Claude ends it on Claude’s side too.
Claude Code
claude mcp add --transport http alync https://api.alync.co/mcp \
--header "X-API-Key: alync_live_..."Any MCP client (mcp.json style)
{
"mcpServers": {
"alync": {
"type": "http",
"url": "https://api.alync.co/mcp",
"headers": { "X-API-Key": "alync_live_..." }
}
}
}ChatGPT
- Enable Settings → Connectors → Advanced → Developer mode (requires a plan with connector support).
- Add a connector with URL
https://api.alync.co/mcpand your API key as the auth header. - In a chat, enable the Alync connector and ask it to list your campaigns.
Example prompts
- “Create an Alync campaign for my web-design agency targeting restaurants in London, generate the strategy, and run the first batch.”
- “List my promoted leads from the clinics campaign and summarize which ones have verified emails.”
- “Why were signals rejected in campaign X? Group the rejection reasons.”
Notes
- Sourcing and enrichment tools are asynchronous — the assistant should poll
get_campaign/list_leadsafter starting them. - The key’s role applies: a
memberkey can run campaigns but not manage the organization. - Rate limits are shared with the REST API.
Last updated July 20, 2026 · Alync (alync.co)