The GTM data, Campaign Builder, Ops, and agent execution layer for AI-native teams.
Signaliz helps teams and agents discover companies and people, verify emails, enrich accounts, build approval-gated campaigns, run Ops workflows, connect customer-owned apps, and preserve GTM memory across every surface: API, MCP, CLI, SDK, and downloadable workflow skills.
This repository is the public GitHub hub for Signaliz. Start here when you need the latest package links, API entrypoints, capability map, skills, or related Signaliz repositories.
Last checked: June 5, 2026.
| Need | Best surface | Link or command |
|---|---|---|
| Direct HTTP API calls | REST API | API docs |
| Current OpenAPI spec | REST API | https://signaliz.com/openapi.json |
| Claude Code, Claude Desktop, Cursor, Windsurf, Cline, Codex, and MCP agents | MCP server | npx -y @signaliz/mcp-server |
| Terminal operations, health checks, Campaign Builder, and Ops debugging | CLI | npm install -g @signaliz/cli |
| TypeScript or JavaScript apps and agent runtimes | SDK | npm install @signaliz/sdk |
| Ready-to-run GTM workflows | Skills | skills/SKILLS.md |
| Package | Latest npm version | NPM page | Primary use |
|---|---|---|---|
@signaliz/mcp-server |
2.0.11 |
npm | Local stdio MCP bridge that proxies to hosted Signaliz MCP. |
@signaliz/cli |
1.0.17 |
npm | Operator CLI for Campaign Builder, Ops, MCP setup, health, and debug workflows. |
@signaliz/sdk |
1.0.17 |
npm | Typed JavaScript/TypeScript access to Campaign Builder, Ops, MCP, and enrichment methods. |
The hosted MCP endpoint currently reports service: signaliz-mcp, version: 2.0.0, and status: ready.
| Surface | Endpoint |
|---|---|
| Public REST API server | https://api.signaliz.com |
| Public OpenAPI spec | https://signaliz.com/openapi.json |
| Hosted MCP endpoint | https://api.signaliz.com/functions/v1/signaliz-mcp |
| SDK/functions base | https://api.signaliz.com/functions/v1 |
| OAuth token endpoint | https://api.signaliz.com/token |
The OpenAPI spec is openapi: 3.1.0, info.version: 2.0.0. It covers current public API routes including email verification, email finding, contact discovery, company signal enrichment, deep research, auth, and token flows.
Create a Signaliz API key in Settings > Developer > API Access, then add Signaliz to Claude Code:
claude mcp add signaliz -e SIGNALIZ_API_KEY=sk_your_key -- npx -y @signaliz/mcp-serverFor Claude Desktop, Cursor, Windsurf, Cline, Codex, or another stdio MCP client:
{
"mcpServers": {
"signaliz": {
"command": "npx",
"args": ["-y", "@signaliz/mcp-server"],
"env": {
"SIGNALIZ_API_KEY": "sk_your_key"
}
}
}
}Optional base URL override:
SIGNALIZ_API_URL=https://api.signaliz.com/functions/v1npm install -g @signaliz/cli
signaliz auth login
signaliz start
signaliz toolsCampaign and Ops examples:
signaliz campaign build --prompt "VP Sales at B2B SaaS, 50-500 employees" --target-count 100 --dry-run
signaliz ops plan "Build 100 verified VP Sales leads at B2B SaaS companies"
signaliz ops doctornpm install @signaliz/sdkimport { Signaliz } from "@signaliz/sdk";
const signaliz = new Signaliz({ apiKey: process.env.SIGNALIZ_API_KEY });
const build = await signaliz.campaigns.build({
name: "Q3 SaaS Outbound",
prompt: "Series A-C SaaS companies in fintech hiring SDRs",
targetCount: 100,
confirmSpend: true,
delivery: { destinationType: "csv" },
});
const final = await signaliz.campaigns.wait(build.campaignBuildId);
const rows = await signaliz.campaigns.rows(build.campaignBuildId, { limit: 100 });| Solution | What it does | Main surfaces |
|---|---|---|
| Campaign Builder | Turns a GTM brief into sourced, verified, reviewed campaign rows and artifacts behind spend and delivery gates. | UI, MCP, CLI, SDK, API |
| GTM Kernel and Brain | Maintains workspace campaign context, provider routes, memory, feedback, risk signals, and next-experiment recommendations. | MCP, CLI, SDK |
| Ops | Plans, executes, waits on, approves, and retrieves GTM work from prompt-first or recurring operations. | MCP, CLI, SDK |
| Enrichment and discovery | Finds companies, people, verified emails, company signals, local leads, and custom AI outputs. | API, MCP, CLI, SDK |
| Connected app actions | Uses customer-owned connections and Nango-managed routes to inspect, prepare, and execute destination actions. | MCP, CLI, SDK |
| Skills | Downloadable workflow instructions for enrichment, verification, scoring, campaign launch, hygiene, outreach, and research. | GitHub, MCP clients, Codex/Claude-style agents |
Signaliz Campaign Builder now supports:
- Plain-English campaign briefs with dry-run planning before spend.
- Strategy templates, campaign books, ICP context, and private campaign memory.
- Historical campaign learning, feedback pulls, Brain readiness, and next-experiment recommendations.
- B2B and local lead sourcing with company, title, seniority, industry, geography, and account-size targeting.
- Email finding, live verification, company signal enrichment, ICP qualification, copy planning, and delivery readiness.
- Provider routing through workspace connections and Nango-managed customer API destinations.
- Approval gates for spend, writes, sender use, delivery, and connected-app actions.
- Async campaign build status, reviewed rows, CSV/webhook artifacts, and delivery approval flows.
Canonical public tools include:
build_campaignget_campaign_build_statusget_campaign_build_rowsgtm_existing_campaign_auditgtm_campaign_execution_statusgtm_campaign_learning_statusgenerate_leadsfind_people_signalizfind_companies_signalizfind_and_verify_emailsverify_emailsenrich_company_signals
Signaliz Ops turns goals into governed work that agents and operators can monitor:
ops_plan- preview the safest execution plan.ops_execute- create or run an operation when confirmation is supplied.ops_status,ops_wait, andops_results- monitor progress and retrieve outputs.ops_approve- resolve human-in-the-loop approvals.ops_doctor, queues, logs, and run-status helpers - debug delivery and execution state.- Routines, ticks, wake events, output sinks, replay, and chained workflows.
- Nango route preparation, connector sessions, tool discovery, action calls, and audit results.
Use Ops when work should be repeatable, monitorable, approval-aware, or connected to downstream destinations.
Signaliz ships reusable skills that agents can download, adapt, and run with Signaliz MCP plus connected app MCPs.
| Skill | File | Use it for |
|---|---|---|
| Lead Enrichment and Verification Pipeline | skills/01-lead-enrichment-verification-pipeline.md | Raw contacts to enriched, verified leads. |
| Campaign Launch Orchestrator | skills/02-campaign-launch-orchestrator.md | Verified leads to governed Instantly campaign setup. |
| Signal-Based Lead Scoring | skills/03-signal-based-lead-scoring.md | Company and contact lists to prioritized outreach order. |
| List Hygiene and Dedup Sync | skills/04-list-hygiene-dedup-sync.md | Dirty or stale lists to clean, audited records. |
| Personalized Outreach Pipeline | skills/05-personalized-outreach-pipeline.md | Verified leads to signal-based campaign copy and launch prep. |
| Swarm of Agents Research | skills/swarm-of-agents-SKILL.md | Multi-perspective research using Signaliz custom AI and web context. |
See skills/SKILLS.md for the full skills index, execution pattern, batching rules, prerequisites, and governance model. Also see the dedicated signaliz-skills repository for packaged .skill files.
| Repository | Purpose |
|---|---|
| signaliz/signaliz | Public GitHub hub for packages, API, solutions, and skills. |
| signaliz/signaliz-mcp | Public MCP registry metadata, schemas, hosted endpoint docs, and manifest files. |
| signaliz/signaliz-skills | Packaged Signaliz skills for download and agent use. |
| signaliz/claude-code-plugin | Claude Code plugin resources. |
| signaliz/advanced-signaliz-workflows | Advanced Signaliz workflow examples. |
Admin handoff for org profile setup, repo metadata, and cross-repo PRs: docs/org-admin-handoff.md.
Signaliz separates read-only planning from spendful or mutating work. Discovery, enrichment reads, dry-runs, tool discovery, status checks, and result reads are safe to run before approval. Spendful enrichment, campaign launch, external delivery, connected-app writes, blocklist updates, and destructive routine actions require explicit confirmation in the relevant surface.
When updating the public GitHub hub:
- Verify npm package versions with
npm view @signaliz/mcp-server version,npm view @signaliz/cli version, andnpm view @signaliz/sdk version. - Verify API docs with
curl -I https://signaliz.com/openapi.json. - Verify hosted MCP readiness with
curl https://api.signaliz.com/functions/v1/signaliz-mcp. - Keep package links, API URLs, Campaign Builder tools, Ops tools, and skills in this README aligned with the current public product surface.
- Keep detailed implementation docs in their dedicated repos or package READMEs; keep this repo as the organized entrypoint.
Website: signaliz.com
Built in Phoenix, AZ by Signaliz.


