@signaliz/mcp-server
v2.0.12
Published
Signaliz MCP server for Claude Code - GTM Kernel, Nango routes, async enrichment, and operating tools.
Readme
@signaliz/mcp-server
Public stdio MCP package for Signaliz.
Use this package when Claude Code, Codex, Cursor, or another local MCP client needs Signaliz as its GTM execution layer. The server proxies to the hosted Signaliz MCP endpoint and exposes a curated default shelf for workspace, enrichment, Ops, and campaign-building workflows.
Quick Start
- Get your API key at app.signaliz.com/settings/api-keys
- Add to your MCP client:
claude mcp add signaliz -e SIGNALIZ_API_KEY=sk_your_key -- npx -y @signaliz/mcp-serverBy default the server talks to https://api.signaliz.com/functions/v1.
What this package is
This package is the public local stdio distribution intended for Codex,
Claude Code, Cursor, and other MCP clients that launch a local command like:
npx -y @signaliz/mcp-serverIt is not the same surface as the broader hosted remote MCP used for browser/OAuth flows.
Tool coverage
The public stdio package defaults to the same curated tool shelf as the hosted Signaliz MCP endpoint:
get_workspaceget_tool_manifestdiscover_capabilitiessignaliz_execute_toolcheck_job_statusfind_people_signalizfind_companies_signalizgenerate_leadsfind_and_verify_emailsverify_emailsenrich_company_signalscustom_ai_promptops_planops_executeops_statusops_waitops_resultsops_approvenango_integration_flow_preparenango_connect_session_createnango_mcp_tools_listnango_mcp_read_write_auditnango_mcp_tool_call_and_waitnango_mcp_action_result_getbuild_campaignget_campaign_build_statusget_campaign_build_rowsgtm_existing_campaign_auditgtm_campaign_execution_statusgtm_campaign_learning_status
Advanced, compatibility, workspace, and legacy tools remain callable through
direct hosted tools/call, get_tool_manifest({ include_hidden: true }),
discover_capabilities, and signaliz_execute_tool.
Set SIGNALIZ_MCP_PROFILE=full to expose the legacy exhaustive stdio bridge as
top-level tools.
Builder includes unlimited cache search, Campaign Builder, API, MCP, CLI, Ops, and integrations. Team is the $499/month public plan and adds unlimited live Find People and Find Companies in Signaliz; Agency stays $999/month with higher credits and throughput. Fresh credits are used only when Signaliz creates, verifies, or fetches new premium data. Live email verification is 0.02 fresh enrichment credits when a new verification is needed; available or fresh-enough verification results return for 0 credits. Current fresh enrichment ceilings are Free 60/min, Builder 300/min, Team 600/min, Agency 1,000/min, and Pay-As-You-Go 1,000/min, plus a 5,000/hour workspace safety cap.
For exact regression checks, run npm run test:campaign-tools in this package.
It builds the stdio server and verifies the Campaign Builder tools through
tools/list.
How it works
Most heavy operations are async:
- Submit work and get a
job_id - Poll
check_job_status - Read results when the job finishes
This keeps the local MCP transport stable even for large runs.
Configuration
| Variable | Required | Description |
|----------|----------|-------------|
| SIGNALIZ_API_KEY | Yes | Your API key (sk_...) |
| SIGNALIZ_API_URL | No | Custom functions base URL, for example https://api.signaliz.com/functions/v1 |
| SIGNALIZ_MCP_PROFILE | No | Use full to expose the legacy exhaustive top-level tool list. Defaults to the curated shelf. |
Uninstall
claude mcp remove signaliz