Skip to main content
The AmpUp MCP server exposes your sales data — accounts, deals, meetings, analysis, and CRM sync — as tools that any MCP-compatible AI assistant can call. Set it up in Claude Desktop, Claude Code, or claude.ai.
For the end-user OAuth setup (no API keys, works in claude.ai), see the MCP integration guide.

Prerequisites

An AmpUp API key (generate one at Settings → API Keys in the dashboard)
An MCP-compatible client (Claude Desktop, Claude Code, Cursor, Windsurf, etc.)

Claude Code

Add AmpUp to your project’s .mcp.json or your global Claude Code settings:
{
  "mcpServers": {
    "ampup": {
      "type": "sse",
      "url": "https://app.ampup.ai/mcp/sse",
      "headers": {
        "Authorization": "Bearer sk-a79-YOUR_API_KEY"
      }
    }
  }
}
Claude Code connects over SSE (server-sent events) — no local process needed.

Claude Desktop

Add the following to your Claude Desktop config file:
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
  "mcpServers": {
    "ampup": {
      "url": "https://app.ampup.ai/mcp/sse",
      "headers": {
        "Authorization": "Bearer sk-a79-YOUR_API_KEY"
      }
    }
  }
}
Restart Claude Desktop after saving the config.

claude.ai

claude.ai uses OAuth — no API key needed:
1

Open MCP settings

In claude.ai, go to Settings → Connected Apps and search for AmpUp.
2

Connect

Click Connect and sign in with your AmpUp account. OAuth handles the rest.
3

Configure permissions

Choose which tools the assistant can use. Read-only tools are enabled by default.
See the full MCP integration guide for screenshots and details.

Other MCP Clients

Any client that supports MCP over SSE can connect using:
SettingValue
URLhttps://app.ampup.ai/mcp/sse
Auth headerAuthorization: Bearer sk-a79-YOUR_API_KEY
TransportSSE (server-sent events)

Available Tools

The MCP server exposes 50+ tools organized by domain. Here’s a summary — your AI assistant sees full descriptions and parameter schemas automatically.

Read Operations

ToolDescription
get_orgCurrent org with workspace summary
list_accountsSearch and browse accounts
get_accountFull account details
list_opportunitiesSearch and filter deals
get_opportunityDeal details with optional context
list_meetingsSearch meetings by status, date, account, or deal
get_meetingMeeting overview and analysis
get_meeting_transcriptFull verbatim transcript
get_transcript_excerptTranscript slice by time range or chapter
get_pre_meeting_briefPreparation context before a call
get_post_meeting_briefOutcomes and follow-ups after a call
get_opportunity_analysisAggregated analysis across deal meetings
list_metricsCurrent scoring metrics
list_metric_groupsMetric group configuration
list_practice_scriptsSearch practice scripts
get_practice_scriptFull script details
get_analysis_configCurrent analysis methodology

Write Operations

ToolDescription
create_accountCreate a company record (optionally sync to CRM)
update_accountModify account details
create_opportunityCreate a deal (optionally sync to CRM)
update_opportunityModify deal details
change_opportunity_stageAdvance or change deal stage
update_meetingModify meeting metadata
run_analysisTrigger AI analysis on a meeting
generate_pre_meeting_briefCreate preparation brief
generate_post_meeting_briefCreate outcomes brief
upload_fileUpload a recording or context document
add_note_to_opportunityLog a CRM note on a deal
add_task_to_opportunityCreate a CRM task on a deal
add_note_to_accountLog a CRM note on an account
add_task_to_accountCreate a CRM task on an account
sync_account_to_crmPush account to HubSpot/Salesforce
sync_opportunity_to_crmPush deal to HubSpot/Salesforce
create_practice_scriptCreate a roleplay scenario
generate_practice_scriptAuto-generate script from a meeting
deleteRemove an account, deal, or meeting

Troubleshooting

Verify your API key is valid and hasn’t expired. Test it with:
curl -H "Authorization: Bearer sk-a79-YOUR_KEY" https://app.ampup.ai/mcp/api/v1/get_org -X POST
After updating the config, restart Claude Desktop or reload Claude Code (/mcp command). The server registers tools on connection — they should appear within a few seconds.
If using claude.ai with OAuth, check that write tools are enabled in Settings → Connected Apps → AmpUp. API key connections have full access by default.

Support