Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

Outreach

NPM · @MINDSTONE/MCP-SERVER-OUTREACH · SCANNED AUG 3

Outreach sales engagement MCP server: prospects, sequences, accounts, tasks, and mailings

+20 this week 66 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency32
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 1373 tokens (~91/item across 15 items; 15 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @mindstone/mcp-server-outreach

# add to Claude Code
claude mcp add mindstone-mcp-server-outreach -- npx -y @mindstone/mcp-server-outreach
# add to Codex CLI
codex mcp add mindstone-mcp-server-outreach -- npx -y @mindstone/mcp-server-outreach
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mindstone-mcp-server-outreach": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@mindstone/mcp-server-outreach"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add mindstone-mcp-server-outreach --command npx --arg -y --arg @mindstone/mcp-server-outreach
# ~/.hermes/config.yaml
mcp_servers:
  mindstone-mcp-server-outreach:
    command: "npx"
    args: ["-y", "@mindstone/mcp-server-outreach"]
// mcp.json
{
  "mcpServers": {
    "mindstone-mcp-server-outreach": {
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-outreach"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +3
    • Stability: unverified → 0.23 functional
  • 2 Aug 26 +42
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • License: unverified → fail functional
    • Tool coverage: 100 → unverified functional
    • Schema quality: unverified → excellent functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Licence: FSL-1.1-MIT functional
  • 1 Aug 26 +16
    • Tool coverage: unverified → 100 functional
  • 31 Jul 26 −23
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@mindstone/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 95 packages

95 packages in the resolved dependency tree · 95 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 15 exposed · ~1,373 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
outreach_add_prospect_to_sequence ~123

Add a prospect to a sequence. Example: { "prospect_id": "123", "sequence_id": "456" } WORKFLOW: Find the prospect (outreach_search_prospects) and sequence (outreach_list_sequences) first. COMMON MISTAKES: Prospect must not already be active in the same sequence.

NameTypeReqDescription
mailbox_idstringMailbox ID to send from (optional, uses default)
prospect_idstringyesProspect ID to enroll
sequence_idstringyesSequence ID to enroll into

No output schema declared.

No examples provided.

outreach_connect_account ~86

Connect an Outreach account via OAuth. Takes no parameters — call with {}. Initiates OAuth flow — in standalone mode, opens a browser URL for sign-in. In bridge mode, delegates to the host app. WHEN TO USE: - No Outreach account is connected - Authentication errors from other tools - User asks to connect Outreach After connecting, verify with outreach_list_connected_accounts.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

outreach_create_prospect ~144

Create a new prospect in Outreach. Example: { "email": "[email protected]", "first_name": "Jane", "last_name": "Doe" } REQUIRED: At least email or last_name. COMMON MISTAKES: Don't forget to associate with an account via account_id if known.

NameTypeReqDescription
account_idstringAssociated Outreach account ID
companystringCompany name
emailstringEmail address
first_namestringFirst name
last_namestringLast name
tagsarrayTags to apply
titlestringJob title

No output schema declared.

No examples provided.

outreach_disconnect_account ~53

Disconnect an Outreach account. Example: { "username": "[email protected]" } Removes stored credentials. Use when switching accounts or troubleshooting.

NameTypeReqDescription
usernamestringyesUsername/email of the account to disconnect

No output schema declared.

No examples provided.

outreach_get_account ~53

Get full details of an Outreach account (company) by ID. Example: { "id": "789" } Returns account fields, custom fields, and associated prospects count.

NameTypeReqDescription
idstringyesAccount ID

No output schema declared.

No examples provided.

outreach_get_prospect ~66

Get full details of an Outreach prospect by ID. Example: { "id": "123" } Returns all prospect fields including custom fields, tags, engagement data. RELATED TOOLS: outreach_search_prospects to find IDs first.

NameTypeReqDescription
idstringyesProspect ID

No output schema declared.

No examples provided.

outreach_get_sequence ~48

Get full details of an Outreach sequence by ID. Example: { "id": "456" } Returns sequence config, steps, and performance metrics.

NameTypeReqDescription
idstringyesSequence ID

No output schema declared.

No examples provided.

outreach_list_accounts ~102

List Outreach accounts (companies). Example: { "name": "Acme" } or { "domain": "acme.com" } Returns company accounts with domain, industry, and owner info.

NameTypeReqDescription
domainstringFilter by domain
limitnumberMax results (default 25, max 50)
namestringFilter by account name (partial match)
page_offsetnumberPage offset for pagination

No output schema declared.

No examples provided.

outreach_list_connected_accounts ~45

List connected Outreach accounts. Takes no parameters — call with {}. Call this FIRST before any Outreach operations to verify authentication. Returns auth mode, connection status, and account details.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

outreach_list_mailings ~100

List recent mailings (sent emails). Example: { "prospect_id": "123" } or { "limit": 10 } Returns sent emails with subject, status (delivered/bounced/opened), and timestamps.

NameTypeReqDescription
limitnumberMax results (default 25, max 50)
page_offsetnumberPage offset for pagination
prospect_idstringFilter mailings for a specific prospect

No output schema declared.

No examples provided.

outreach_list_sequences ~106

List Outreach sequences. Example: { "name": "Demo follow-up" } or {} Returns sequences with status, step count, and engagement stats. FILTERS: name (partial match), enabled status.

NameTypeReqDescription
enabledbooleanFilter by enabled/disabled status
limitnumberMax results (default 25, max 50)
namestringFilter by sequence name (partial match)
page_offsetnumberPage offset for pagination

No output schema declared.

No examples provided.

outreach_list_tasks ~103

List Outreach tasks. Example: { "status": "incomplete" } or { "prospect_id": "123" } Returns tasks with status, due date, type, and assigned user.

NameTypeReqDescription
limitnumberMax results (default 25, max 50)
page_offsetnumberPage offset for pagination
prospect_idstringFilter tasks for a specific prospect
statusstringFilter by completion status

No output schema declared.

No examples provided.

outreach_list_users ~45

List Outreach team members. Example: {} Returns users with name, email, and role information.

NameTypeReqDescription
limitnumberMax results (default 25, max 50)

No output schema declared.

No examples provided.

outreach_search_prospects ~182

Search Outreach prospects. Example: { "email": "[email protected]" } or { "name": "Jane", "limit": 10 } WORKFLOW: Search first, then use outreach_get_prospect for full details. FILTERS: name, email, company, tags. All optional — omit all for recent prospects. PAGINATION: Default 25, max 50. Use page_offset for next page.

NameTypeReqDescription
companystringFilter by company name
emailstringFilter by email address (exact match)
limitnumberMax results (default 25, max 50)
namestringFilter by first or last name (partial match)
page_offsetnumberPage offset for pagination (0-based)
tagsarrayFilter by tags

No output schema declared.

No examples provided.

outreach_update_prospect ~117

Update an existing prospect. Example: { "id": "123", "title": "VP Sales" } Only provided fields are updated. Use outreach_search_prospects to find the ID.

NameTypeReqDescription
companystringCompany name
emailstringEmail address
first_namestringFirst name
idstringyesProspect ID (required)
last_namestringLast name
tagsarrayTags to apply
titlestringJob title

No output schema declared.

No examples provided.