Skip to main content
Glama
NoseForLeads

Nose for Leads MCP

by NoseForLeads

Nose for Leads — MCP server

Verified local-business leads, built for agents.

mcp MCP server

Nose for Leads is an MCP server that finds, filters, and verifies local-business leads on demand: agents get back a send-ready list of contacts, not raw scrape data. Every email carries a machine-readable verification receipt (verifier, verdict, timestamp) so an agent can act on it without a human double-checking. Access is credit-based with per-key spend budgets and daily caps, so an agent can be handed a key without a blank check.

This repository holds the public integration docs, the registry manifest (server.json), and example transcripts. The server itself is remote-hosted; there is nothing to install or self-host.

Connect

Claude Code (OAuth, no key to paste)

claude mcp add --transport http nose-for-leads https://api.noseforleads.com/mcp
claude mcp login nose-for-leads

login opens your browser to approve access and set a spending budget. The token persists across sessions and refreshes itself.

Codex CLI

# ~/.codex/config.toml
[mcp_servers.nose-for-leads]
url = "https://api.noseforleads.com/mcp"
codex mcp login nose-for-leads

If OAuth gives you trouble, the API-key header works in Codex too: env_http_headers = { "X-API-Key" = "YOUR_ENV_VAR" } under the same block.

Cursor, Windsurf, other MCP clients

Point your client's HTTP server config at https://api.noseforleads.com/mcp. Cursor's .cursor/mcp.json (and any client that reads the standard shape):

{
  "mcpServers": {
    "nose-for-leads": { "type": "http", "url": "https://api.noseforleads.com/mcp" }
  }
}

Stdio-only clients (mcp-remote shim)

Clients that only speak stdio can use the standard mcp-remote proxy:

npx -y mcp-remote https://api.noseforleads.com/mcp

The repo's Dockerfile packages the same shim (docker build -t nose-for-leads-mcp . && docker run -i nose-for-leads-mcp). Listing tools works without auth; tool calls trigger the OAuth flow (or pass the API-key header via --header "X-API-Key: ...").

API key (scripts, CI, clients without OAuth)

Mint a key at https://app.noseforleads.com/keys and pass it as a header: X-API-Key: <your key> (or Authorization: Bearer <your key>). Keys can carry a total and/or daily credit budget, so a runaway loop stops at the cap with a budget_exhausted error instead of draining the account.

Related MCP server: scrapercity-cli

Tools

All 9 tools carry MCP tool annotations (readOnly / destructive / idempotent / openWorld) and require the auth above.

Tool

What it does

translate_icp

Turns a free-text ICP description (e.g. "plumbers in phoenix with no website") into the structured query dict start_campaign requires. Call this first: start_campaign never accepts free text.

start_campaign

Submits a lead campaign for a vertical + geo. Costs 1 credit per validated lead and cannot overspend. Accepts an idempotency_key for safe retries. Returns {job_id, idempotent_replay}.

get_campaign_status

Checks a campaign's status by job_id: queued, running, done, done_partial, or failed.

fetch_results

Pages through a campaign's leads (offset/limit). kept_only=true returns only leads marked kept in review. Rows carry verification receipts when a live verification exists.

get_icp_pack

Lists saved vertical/geo templates (ICP packs) available to the account.

add_suppression

Adds an email or domain to the suppression list so future campaigns exclude it.

review_lead

Marks a lead kept, discarded, or unreviewed.

get_credits

Checks the prepaid credit balance (1 credit = 1 validated lead), available packs, and recent ledger entries; with an API key, also that key's remaining budget.

send_feedback

Sends feedback to the Nose for Leads team (kind: "product" or kind: "tool").

Verification receipts

Rows returned by fetch_results carry a receipt when a live verification exists: verified_by (which verifier), verified_at (when), and verifier_verdict (the result). A receipt proves the email was checked against the live mailbox provider, not merely pattern-matched. See examples/ for real transcript shapes.

Credits and safety semantics

  • 1 credit = 1 validated lead; 25 free at signup, prepaid packs from $19.99 for 200.

  • A campaign that discovers more leads than the balance covers delivers what the credits cover and ends done_partial instead of failing.

  • Per-key budgets are enforced before the account balance, and start_campaign honors idempotency_key, so a retry never double-charges.

  • Errors return a plain {code, message} envelope (e.g. payment_required, budget_exhausted, quota_exceeded with retry_after). The full table is in the agent guide.

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    A server implementation that enables AI assistants to interact with HubSpot CRM data, allowing for seamless creation and management of contacts and companies, retrieval of activity history, and access to engagement data through natural language commands.
    Last updated
    8
    83
    13
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    B2B lead generation MCP server with 20+ lead generation tools - Apollo scraping, Google Maps, email finder, email validator, mobile finder, skip trace, ecommerce store data, and more.
    Last updated
    25
    32
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    MCP server for Apollo.io B2B database enabling people and company search, enrichment, and insights through conversational interfaces.
    Last updated
    9
    547
    19
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    Connects AI agents to Outscraper for business discovery, Google Maps intelligence, company and contact enrichment, review analysis, search, and structured web extraction.
    Last updated
    28
    41
    3
    MIT

View all related MCP servers

Related MCP Connectors

  • B2B and local lead gen: verified emails, site contacts, Maps and Yellow Pages leads.

  • Verify emails — deliverability, disposable/role/free detection, MX validity, domain age.

  • B2B lead generation, email verification, company enrichment, and agentic GTM Ops.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/NoseForLeads/mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server