@summit53/mcp-server 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +10 -0
- package/README.md +189 -0
- package/bin/cli.mjs +53 -0
- package/package.json +50 -0
- package/server.json +77 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Copyright (c) 2026 Summit53 Pty Ltd. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is proprietary and confidential. Unauthorized copying, distribution,
|
|
4
|
+
or use of this software, via any medium, is strictly prohibited.
|
|
5
|
+
|
|
6
|
+
The Summit53 MCP Server npm package is provided as a convenience wrapper to connect
|
|
7
|
+
MCP-compatible AI assistants to the hosted Summit53 service. Use of the Summit53
|
|
8
|
+
service is subject to the Terms of Service at https://summit53.io/terms.
|
|
9
|
+
|
|
10
|
+
For licensing inquiries, contact: support@summit53.io
|
package/README.md
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
# Summit53 MCP Server
|
|
2
|
+
|
|
3
|
+
**48 revenue intelligence tools for AI assistants.**
|
|
4
|
+
|
|
5
|
+
Summit53 MCP server connects your AI assistant to your CRM — search deals, forecast revenue, analyze pipeline risk, run qualification frameworks, manage outreach sequences, and track value delivery using natural language.
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/@summit53/mcp-server)
|
|
8
|
+
[](https://modelcontextprotocol.io)
|
|
9
|
+
[](https://summit53.io/terms)
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
All connections use **OAuth 2.0 authentication** — no API keys to manage. You sign in with your Summit53 account and scoped tokens are issued automatically.
|
|
14
|
+
|
|
15
|
+
### Claude.ai (Web)
|
|
16
|
+
|
|
17
|
+
1. Go to **Settings > Connectors**
|
|
18
|
+
2. Click **Add custom connector**
|
|
19
|
+
3. Enter Name: `Summit53` and URL: `https://api.summit53.io/mcp`
|
|
20
|
+
4. Click Save, then **Configure**
|
|
21
|
+
5. Complete OAuth sign-in with your Summit53 credentials
|
|
22
|
+
|
|
23
|
+
### Claude Desktop / Claude Code
|
|
24
|
+
|
|
25
|
+
Uses `mcp-remote` to bridge stdio to the hosted OAuth server:
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"mcpServers": {
|
|
30
|
+
"summit53": {
|
|
31
|
+
"command": "npx",
|
|
32
|
+
"args": [
|
|
33
|
+
"mcp-remote",
|
|
34
|
+
"https://api.summit53.io/mcp/"
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
On first run, a browser window opens for OAuth sign-in. Tokens are cached locally and refresh automatically.
|
|
42
|
+
|
|
43
|
+
**Config file locations:**
|
|
44
|
+
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
45
|
+
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
46
|
+
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
|
47
|
+
|
|
48
|
+
### ChatGPT
|
|
49
|
+
|
|
50
|
+
1. Go to **Settings > Apps**
|
|
51
|
+
2. Click **Add app** and search for Summit53
|
|
52
|
+
3. Enter server URL: `https://api.summit53.io/mcp`
|
|
53
|
+
4. Authorize via OAuth with your Summit53 account
|
|
54
|
+
|
|
55
|
+
### Cursor / Windsurf
|
|
56
|
+
|
|
57
|
+
Use the same `mcp-remote` proxy command in your client's MCP configuration:
|
|
58
|
+
|
|
59
|
+
```json
|
|
60
|
+
{
|
|
61
|
+
"mcpServers": {
|
|
62
|
+
"summit53": {
|
|
63
|
+
"command": "npx",
|
|
64
|
+
"args": ["mcp-remote", "https://api.summit53.io/mcp/"]
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## What Can You Do?
|
|
71
|
+
|
|
72
|
+
Ask your AI assistant questions like:
|
|
73
|
+
|
|
74
|
+
| Category | Example Prompts |
|
|
75
|
+
|----------|----------------|
|
|
76
|
+
| **Search** | "Show me all deals over $50k" · "Find accounts in the technology industry" |
|
|
77
|
+
| **Pipeline Risk** | "What deals are at risk?" · "Show me the risk heatmap" |
|
|
78
|
+
| **Forecasting** | "What's our forecast confidence this quarter?" · "What's our current ARR?" |
|
|
79
|
+
| **Qualification** | "Run MEDDPIC analysis on deal 15" · "What's the BANT score for opportunity 7?" |
|
|
80
|
+
| **Activity** | "Which accounts haven't been touched in 30 days?" · "What's my weekly action plan?" |
|
|
81
|
+
| **Outreach** | "Show me outreach leads for Globex" · "Enroll leads 11 and 12 in sequence 7" |
|
|
82
|
+
| **Value Tracking** | "How is Acme Corp tracking on value delivery?" · "Show the value contract for deal 15" |
|
|
83
|
+
| **Team** | "How is my team doing on their weekly plans?" · "Show team activities for last week" |
|
|
84
|
+
|
|
85
|
+
## All 48 Tools
|
|
86
|
+
|
|
87
|
+
### Search (3 tools)
|
|
88
|
+
- `get_opportunity` — Full deal details by ID
|
|
89
|
+
- `search_opportunities` — Filter deals by name, stage, account, value
|
|
90
|
+
- `search_accounts` — Filter accounts by name, industry, owner, revenue
|
|
91
|
+
|
|
92
|
+
### Account Intelligence (3 tools)
|
|
93
|
+
- `account_intelligence_summary` — Health scores, risk accounts, expansion candidates
|
|
94
|
+
- `account_execution_health` — Execution health score for a specific account
|
|
95
|
+
- `opportunity_framework_summary` — MEDDPIC/BANT/SPICED qualification scores
|
|
96
|
+
|
|
97
|
+
### Pipeline & Risk (4 tools)
|
|
98
|
+
- `pipeline_risk_summary` — Risk analysis with confidence metrics
|
|
99
|
+
- `risk_heatmap` — Deal-level risk heatmap with scores and factors
|
|
100
|
+
- `deal_drag_summary` — Stalled deals, waste scores, risk distribution
|
|
101
|
+
- `deal_drag_dashboard` — Paginated deal drag with filters
|
|
102
|
+
|
|
103
|
+
### Forecasting (4 tools)
|
|
104
|
+
- `forecast_confidence` — Confidence scores, rep performance, velocity, quota coverage
|
|
105
|
+
- `arr_growth_analytics` — ARR, NRR, growth stage classification, trends
|
|
106
|
+
- `arr_growth_narrative` — AI-generated ARR narrative with recommendations
|
|
107
|
+
- `unified_forecast_summary` — Executive forecast: pipeline coverage, revenue at risk
|
|
108
|
+
|
|
109
|
+
### Activity (3 tools)
|
|
110
|
+
- `activity_gaps` — Accounts not touched in N days
|
|
111
|
+
- `weekly_action_plan` — Prioritized weekly tasks with risk summaries
|
|
112
|
+
- `team_action_plan` — Team-wide completion rates and flagged deals
|
|
113
|
+
|
|
114
|
+
### Research (1 tool)
|
|
115
|
+
- `external_account_research` — Queue async web/news research for an account
|
|
116
|
+
|
|
117
|
+
### Notes & Activities (5 tools)
|
|
118
|
+
- `get_opportunity_notes_summary` — AI-generated notes summary
|
|
119
|
+
- `rebuild_opportunity_notes_summary` — Regenerate notes summary
|
|
120
|
+
- `get_opportunity_activities` — All activities (calls, emails, meetings, notes)
|
|
121
|
+
- `get_opportunity_notes` — All notes on a deal
|
|
122
|
+
- `create_opportunity_note` — Add a note (triggers async summary update)
|
|
123
|
+
|
|
124
|
+
### Outreach (13 tools)
|
|
125
|
+
- `search_outreach_leads` — Filter leads by query, status, owner, list
|
|
126
|
+
- `list_outreach_sequences` — All sequences with metadata
|
|
127
|
+
- `get_outreach_sequence` — Sequence details including steps
|
|
128
|
+
- `enroll_outreach_leads_in_sequence` — Enroll leads into sequences
|
|
129
|
+
- `process_outreach_due_steps` — Trigger due-step processing
|
|
130
|
+
- `resolve_outreach_manual_step` — Complete/skip manual steps
|
|
131
|
+
- `convert_outreach_lead` — Convert lead to CRM account/contact/opportunity
|
|
132
|
+
- `list_outreach_starter_templates` — Predefined sequence templates
|
|
133
|
+
- `get_outreach_lead` — Full lead details
|
|
134
|
+
- `update_outreach_lead` — Update lead fields
|
|
135
|
+
- `list_outreach_lead_lists` — Lead lists with counts
|
|
136
|
+
- `bulk_upsert_outreach_leads` — Create/update up to 200 leads with dedup
|
|
137
|
+
- `outreach_funnel_summary` — Funnel breakdown by status, stage, fit, engagement
|
|
138
|
+
|
|
139
|
+
### Value Impact (11 tools)
|
|
140
|
+
- `get_value_impact_card` — Fulfillment score, expansion readiness, evidence confidence
|
|
141
|
+
- `get_value_contract` — Promised outcomes for an opportunity
|
|
142
|
+
- `list_impact_entries` — Post-sale impact evidence for a contract
|
|
143
|
+
- `list_account_contracts` — All contracts with dates, ARR, status
|
|
144
|
+
- `create_impact_entry` — Add manual impact evidence
|
|
145
|
+
- `update_impact_entry` — Update impact entry fields
|
|
146
|
+
- `delete_impact_entry` — Remove an impact entry
|
|
147
|
+
- `update_account_contract` — Update contract dates, ARR, term
|
|
148
|
+
- `set_primary_contract` — Set primary contract for an account
|
|
149
|
+
- `generate_value_contract` — AI-generate value contract from deal notes
|
|
150
|
+
- `run_value_impact_pipeline` — Full pipeline: contracts, generation, evidence extraction
|
|
151
|
+
|
|
152
|
+
### Discovery (1 tool)
|
|
153
|
+
- `list_available_tools` — Discover all tools, optionally filtered by category
|
|
154
|
+
|
|
155
|
+
## Authentication
|
|
156
|
+
|
|
157
|
+
Summit53 uses **OAuth 2.0** for all MCP connections. No API keys to generate or rotate.
|
|
158
|
+
|
|
159
|
+
- Sign in with your Summit53 account credentials during setup
|
|
160
|
+
- Scoped tokens are issued automatically (`crm:read`, `pipeline:read`, `revenue:read`, `actions:read`)
|
|
161
|
+
- Tokens expire after 1 year and can be revoked from your admin panel at `/admin/integrations/mcp`
|
|
162
|
+
- OAuth discovery: `https://api.summit53.io/.well-known/oauth-authorization-server`
|
|
163
|
+
|
|
164
|
+
For stdio-based clients (Claude Desktop, Cursor, Windsurf), the `mcp-remote` package handles the OAuth flow — a browser window opens on first run, and tokens are cached locally.
|
|
165
|
+
|
|
166
|
+
## Architecture
|
|
167
|
+
|
|
168
|
+
- **Transport**: Streamable HTTP (Cloud Run compatible, no WebSocket required)
|
|
169
|
+
- **Rate Limiting**: 100 calls/min global, 30/min per tool (Redis-backed sliding window)
|
|
170
|
+
- **Caching**: Redis-backed with per-tool TTLs (5-15 minutes)
|
|
171
|
+
- **Metrics**: Built-in usage tracking per tool, per org
|
|
172
|
+
- **Hosting**: Google Cloud Run (stateless, auto-scaling)
|
|
173
|
+
|
|
174
|
+
## Getting Started
|
|
175
|
+
|
|
176
|
+
1. Sign up at [summit53.io](https://summit53.io)
|
|
177
|
+
2. Add Summit53 to your MCP client (see Quick Start above)
|
|
178
|
+
3. Authenticate via OAuth when prompted
|
|
179
|
+
4. Start asking your AI assistant about your pipeline
|
|
180
|
+
|
|
181
|
+
## Support
|
|
182
|
+
|
|
183
|
+
- Documentation: [summit53.com/docs](https://www.summit53.com/docs)
|
|
184
|
+
- Email: support@summit53.io
|
|
185
|
+
- Issues: [github.com/summit53/mcp-server/issues](https://github.com/summit53/mcp-server/issues)
|
|
186
|
+
|
|
187
|
+
## License
|
|
188
|
+
|
|
189
|
+
Proprietary. See [summit53.io/terms](https://summit53.io/terms) for details.
|
package/bin/cli.mjs
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Summit53 MCP Server — thin mcp-remote wrapper
|
|
5
|
+
*
|
|
6
|
+
* This package is a convenience wrapper around mcp-remote that connects
|
|
7
|
+
* MCP clients to the hosted Summit53 MCP server via OAuth 2.0.
|
|
8
|
+
*
|
|
9
|
+
* On first run, a browser window opens for OAuth sign-in with your
|
|
10
|
+
* Summit53 account. Tokens are cached locally and refresh automatically.
|
|
11
|
+
*
|
|
12
|
+
* Usage:
|
|
13
|
+
* npx @summit53/mcp-server
|
|
14
|
+
*
|
|
15
|
+
* Or in your MCP client config:
|
|
16
|
+
* {
|
|
17
|
+
* "mcpServers": {
|
|
18
|
+
* "summit53": {
|
|
19
|
+
* "command": "npx",
|
|
20
|
+
* "args": ["@summit53/mcp-server"]
|
|
21
|
+
* }
|
|
22
|
+
* }
|
|
23
|
+
* }
|
|
24
|
+
*
|
|
25
|
+
* This is equivalent to:
|
|
26
|
+
* npx mcp-remote https://api.summit53.io/mcp/
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
import { spawn } from "child_process";
|
|
30
|
+
import { fileURLToPath } from "url";
|
|
31
|
+
|
|
32
|
+
const SUMMIT53_URL = process.env.SUMMIT53_URL || "https://api.summit53.io/mcp/";
|
|
33
|
+
|
|
34
|
+
// Delegate to mcp-remote, passing through stdio
|
|
35
|
+
const child = spawn(
|
|
36
|
+
"npx",
|
|
37
|
+
["mcp-remote", SUMMIT53_URL],
|
|
38
|
+
{
|
|
39
|
+
stdio: "inherit",
|
|
40
|
+
env: process.env,
|
|
41
|
+
shell: true,
|
|
42
|
+
}
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
child.on("error", (err) => {
|
|
46
|
+
console.error("Failed to start mcp-remote:", err.message);
|
|
47
|
+
console.error("\nMake sure mcp-remote is available: npx mcp-remote --help");
|
|
48
|
+
process.exit(1);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
child.on("exit", (code) => {
|
|
52
|
+
process.exit(code ?? 0);
|
|
53
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@summit53/mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Summit53 CRM — 48 revenue intelligence tools for AI assistants via MCP. Search deals, forecast revenue, analyze pipeline risk, manage outreach, and track value delivery.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"crm",
|
|
9
|
+
"sales",
|
|
10
|
+
"revenue-intelligence",
|
|
11
|
+
"pipeline",
|
|
12
|
+
"forecast",
|
|
13
|
+
"meddpic",
|
|
14
|
+
"outreach",
|
|
15
|
+
"ai-tools",
|
|
16
|
+
"claude",
|
|
17
|
+
"cursor",
|
|
18
|
+
"windsurf"
|
|
19
|
+
],
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "Summit53",
|
|
22
|
+
"email": "support@summit53.io",
|
|
23
|
+
"url": "https://summit53.io"
|
|
24
|
+
},
|
|
25
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
26
|
+
"homepage": "https://summit53.io/integrations/mcp",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/summit53/mcp-server"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/summit53/mcp-server/issues"
|
|
33
|
+
},
|
|
34
|
+
"bin": {
|
|
35
|
+
"summit53-mcp-server": "bin/cli.mjs"
|
|
36
|
+
},
|
|
37
|
+
"type": "module",
|
|
38
|
+
"files": [
|
|
39
|
+
"bin/",
|
|
40
|
+
"README.md",
|
|
41
|
+
"server.json",
|
|
42
|
+
"LICENSE"
|
|
43
|
+
],
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=18.0.0"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"mcp-remote": "^0.1.0"
|
|
49
|
+
}
|
|
50
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "io.summit53.mcp-server",
|
|
3
|
+
"display_name": "Summit53 CRM",
|
|
4
|
+
"description": "Revenue intelligence MCP server with 48 tools for AI-powered CRM workflows. Search deals, forecast revenue, analyze pipeline risk, run MEDDPIC scoring, manage outreach sequences, and track value delivery — all from your AI assistant.",
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Summit53",
|
|
8
|
+
"url": "https://summit53.io",
|
|
9
|
+
"email": "support@summit53.io"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/summit53/mcp-server"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://summit53.io/integrations/mcp",
|
|
16
|
+
"documentation": "https://www.summit53.com/docs",
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "streamable-http",
|
|
19
|
+
"url": "https://api.summit53.io/mcp"
|
|
20
|
+
},
|
|
21
|
+
"authentication": {
|
|
22
|
+
"type": "oauth2",
|
|
23
|
+
"discovery_url": "https://api.summit53.io/.well-known/oauth-authorization-server",
|
|
24
|
+
"authorization_url": "https://api.summit53.io/oauth/authorize/",
|
|
25
|
+
"token_url": "https://api.summit53.io/oauth/token/",
|
|
26
|
+
"scopes": [
|
|
27
|
+
"crm:read",
|
|
28
|
+
"pipeline:read",
|
|
29
|
+
"revenue:read",
|
|
30
|
+
"actions:read"
|
|
31
|
+
],
|
|
32
|
+
"note": "OAuth 2.0 only — no API keys. Tokens expire after 1 year."
|
|
33
|
+
},
|
|
34
|
+
"categories": [
|
|
35
|
+
"CRM",
|
|
36
|
+
"Sales",
|
|
37
|
+
"Revenue Intelligence",
|
|
38
|
+
"Pipeline Management",
|
|
39
|
+
"Forecasting",
|
|
40
|
+
"Outreach"
|
|
41
|
+
],
|
|
42
|
+
"tags": [
|
|
43
|
+
"crm",
|
|
44
|
+
"sales",
|
|
45
|
+
"revenue",
|
|
46
|
+
"pipeline",
|
|
47
|
+
"forecast",
|
|
48
|
+
"meddpic",
|
|
49
|
+
"outreach",
|
|
50
|
+
"deal-management",
|
|
51
|
+
"account-intelligence",
|
|
52
|
+
"value-impact"
|
|
53
|
+
],
|
|
54
|
+
"tools_count": 48,
|
|
55
|
+
"tool_categories": {
|
|
56
|
+
"Search": ["get_opportunity", "search_opportunities", "search_accounts"],
|
|
57
|
+
"Account Intelligence": ["account_intelligence_summary", "account_execution_health", "opportunity_framework_summary"],
|
|
58
|
+
"Pipeline & Risk": ["pipeline_risk_summary", "risk_heatmap", "deal_drag_summary", "deal_drag_dashboard"],
|
|
59
|
+
"Forecasting": ["forecast_confidence", "arr_growth_analytics", "arr_growth_narrative", "unified_forecast_summary"],
|
|
60
|
+
"Activity": ["activity_gaps", "weekly_action_plan", "team_action_plan"],
|
|
61
|
+
"Research": ["external_account_research"],
|
|
62
|
+
"Notes & Activities": ["get_opportunity_notes_summary", "rebuild_opportunity_notes_summary", "get_opportunity_activities", "get_opportunity_notes", "create_opportunity_note"],
|
|
63
|
+
"Outreach": ["search_outreach_leads", "list_outreach_sequences", "get_outreach_sequence", "enroll_outreach_leads_in_sequence", "process_outreach_due_steps", "resolve_outreach_manual_step", "convert_outreach_lead", "list_outreach_starter_templates", "get_outreach_lead", "update_outreach_lead", "list_outreach_lead_lists", "bulk_upsert_outreach_leads", "outreach_funnel_summary"],
|
|
64
|
+
"Value Impact": ["get_value_impact_card", "get_value_contract", "list_impact_entries", "list_account_contracts", "create_impact_entry", "update_impact_entry", "delete_impact_entry", "update_account_contract", "set_primary_contract", "generate_value_contract", "run_value_impact_pipeline"]
|
|
65
|
+
},
|
|
66
|
+
"supported_clients": [
|
|
67
|
+
"Claude Desktop",
|
|
68
|
+
"Claude.ai",
|
|
69
|
+
"Cursor",
|
|
70
|
+
"Windsurf",
|
|
71
|
+
"Claude Code",
|
|
72
|
+
"Codex",
|
|
73
|
+
"Any MCP-compatible client"
|
|
74
|
+
],
|
|
75
|
+
"license": "Proprietary",
|
|
76
|
+
"pricing": "Free tier available. See https://summit53.io/pricing"
|
|
77
|
+
}
|