@launchpath-ai/mcp-server 1.0.28 → 1.0.29

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/README.md CHANGED
@@ -1,20 +1,32 @@
1
1
  # @launchpath-ai/mcp-server
2
2
 
3
- The official [Model Context Protocol](https://modelcontextprotocol.io) server for [LaunchPath](https://launchpath.ai). Manage AI agents, knowledge bases, deployments, clients, and campaigns from Claude Code, Cursor, or any MCP-compatible tool.
3
+ The official [Model Context Protocol](https://modelcontextprotocol.io) server for [LaunchPath](https://www.trylaunchpath.com). Manage AI agents, knowledge bases, deployments, clients, and campaigns from Claude Code, Cursor, or any MCP-compatible tool.
4
4
 
5
5
  ## Quick Start
6
6
 
7
- ### Claude Code
7
+ ### Claude Code (recommended — includes skills)
8
+
9
+ Install the LaunchPath plugin to get MCP tools **and** slash command skills:
10
+
11
+ ```
12
+ /plugin install https://github.com/launchpath/claude-plugin.git
13
+ ```
14
+
15
+ This gives you everything — the MCP server starts automatically and you get skills like `/launchpath:deploy-agent`, `/launchpath:agent-report`, and more.
16
+
17
+ ### Claude Code (MCP server only)
18
+
19
+ If you only want the MCP tools without skills:
8
20
 
9
21
  ```bash
10
22
  claude mcp add -e LAUNCHPATH_API_KEY=lp_key_your_key_here launchpath -- npx -y @launchpath-ai/mcp-server
11
23
  ```
12
24
 
13
- One command — replace `lp_key_your_key_here` with your API key. It's saved in your Claude Code config automatically.
25
+ Replace `lp_key_your_key_here` with your API key.
14
26
 
15
- ### Cursor
27
+ ### Cursor / Windsurf / Other MCP Clients
16
28
 
17
- Add to `.cursor/mcp.json`:
29
+ Add to your MCP config (e.g., `.cursor/mcp.json`):
18
30
 
19
31
  ```json
20
32
  {
@@ -30,10 +42,6 @@ Add to `.cursor/mcp.json`:
30
42
  }
31
43
  ```
32
44
 
33
- ### Other MCP Clients
34
-
35
- Use the same JSON config above for Windsurf, Cline, or any client that supports stdio MCP servers.
36
-
37
45
  ## Get an API Key
38
46
 
39
47
  1. Go to [www.trylaunchpath.com/dashboard/mcp](https://www.trylaunchpath.com/dashboard/mcp)
@@ -44,33 +52,53 @@ MCP access requires the **Growth** plan or higher.
44
52
 
45
53
  ## What You Can Do
46
54
 
47
- The server provides **58 tools** across **11 toolsets**, loaded on demand:
55
+ ### MCP Tools (50+)
48
56
 
49
57
  | Toolset | Tools | Description |
50
58
  |---------|-------|-------------|
51
59
  | **Core** | 3 | List agents, get agent details, test chat |
52
60
  | **Agent Management** | 5 | Create, update, clone, delete agents |
53
61
  | **Knowledge** | 8 | Scrape websites, manage FAQs, generate Q&A |
54
- | **Deployment** | 6 | Widget, API, and WhatsApp channels |
62
+ | **Deployment** | 4 | Widget config, embed code, API channels, list channels |
55
63
  | **Clients** | 4 | Manage client accounts |
56
64
  | **Campaigns** | 4 | Link agents to clients via campaigns |
57
65
  | **WhatsApp** | 8 | Templates, broadcasts, drip sequences |
58
- | **Analytics** | 8 | Metrics, conversations, channel health |
66
+ | **Analytics** | 8 | Conversations, channel health, performance metrics |
59
67
  | **Tools Config** | 5 | Manage agent integrations and webhooks |
60
68
  | **Portal** | 2 | Client portal invites and branding |
61
- | **Integrations** | 3 | Browse and connect 900+ apps |
69
+ | **Integrations** | 5 | Browse, connect, and poll 900+ app integrations |
70
+
71
+ ### Skills (Claude Code plugin only)
62
72
 
63
- Only core, agent management, and knowledge tools are loaded by default. Use `enable_toolset("deployment")` to load others on demand, and `disable_toolset("deployment")` to unload them.
73
+ When installed via the plugin, you also get guided workflows:
64
74
 
65
- ## Skills
75
+ | Skill | Description |
76
+ |-------|-------------|
77
+ | `/launchpath:deploy-agent` | Create, train, and deploy an agent end-to-end |
78
+ | `/launchpath:setup-client` | Set up a client account with agents and deployment |
79
+ | `/launchpath:agent-report` | Generate a status report across all agents |
80
+ | `/launchpath:whatsapp-campaign` | Build and launch a WhatsApp campaign |
66
81
 
67
- Five pre-built workflows for common tasks:
82
+ Plus an internal guide that helps Claude use LaunchPath tools effectively.
68
83
 
69
- - **deploy-agent** — Create, train, and deploy an agent end-to-end
70
- - **setup-client** — Set up a client account with agents and portal access
71
- - **agent-report** Generate a status report across all agents
72
- - **whatsapp-campaign** — Build and launch a WhatsApp campaign
73
- - **launchpath-guide** — Reference guide for platform capabilities
84
+ ### API Channel
85
+
86
+ Create standalone API endpoints for custom integrations:
87
+
88
+ ```bash
89
+ # 1. Create an API channel (via MCP tool: create_api_channel)
90
+ # Returns: endpoint URL + bearer token
91
+
92
+ # 2. Send messages
93
+ curl -X POST https://www.trylaunchpath.com/api/channels/{agentId}/chat \
94
+ -H "Authorization: Bearer lp_ch_your_token" \
95
+ -H "Content-Type: application/json" \
96
+ -d '{"userMessage": "Hello!", "sessionId": "user-123"}'
97
+
98
+ # Response: SSE stream with text-delta, tool-call, done events
99
+ ```
100
+
101
+ Features: SSE streaming, stateful/stateless modes, lead capture, file uploads, HITL support.
74
102
 
75
103
  ## Configuration
76
104
 
@@ -85,6 +113,12 @@ Five pre-built workflows for common tasks:
85
113
  - An MCP client that supports stdio transport
86
114
  - LaunchPath account on Growth plan or higher
87
115
 
116
+ ## Links
117
+
118
+ - [LaunchPath Dashboard](https://www.trylaunchpath.com/dashboard)
119
+ - [Claude Code Plugin](https://github.com/launchpath/claude-plugin) (recommended for Claude Code users)
120
+ - [MCP Server on npm](https://www.npmjs.com/package/@launchpath-ai/mcp-server)
121
+
88
122
  ## License
89
123
 
90
124
  MIT
package/build/index.js CHANGED
@@ -190,7 +190,13 @@ When things go wrong with WhatsApp campaigns, use these tools to diagnose:
190
190
  ## Models
191
191
  - Slash-prefixed IDs use OpenRouter (e.g., "openai/gpt-4o-mini")
192
192
  - Bare IDs use direct Anthropic (e.g., "claude-sonnet-4-5-20250929")
193
- - Default model for new agents: "openai/gpt-4o-mini" (most cost-effective)`;
193
+ - Default model for new agents: "openai/gpt-4o-mini" (most cost-effective)
194
+
195
+ ## Claude Code Plugin
196
+ For Claude Code users, install the LaunchPath plugin for guided skills (slash commands):
197
+ \`/plugin install https://github.com/launchpath/claude-plugin.git\`
198
+
199
+ This gives you workflow skills like /launchpath:deploy-agent, /launchpath:setup-client, /launchpath:agent-report, and /launchpath:whatsapp-campaign — in addition to all the MCP tools.`;
194
200
  // ─── Server Setup ────────────────────────────────────────────────────────────
195
201
  const server = new McpServer({
196
202
  name: "launchpath",
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@launchpath-ai/mcp-server",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "LaunchPath MCP Server — manage AI agents, knowledge bases, deployments, clients, and campaigns from Claude Code",
5
5
  "type": "module",
6
6
  "bin": {