@launchpath-ai/mcp-server 1.0.0 → 1.0.1
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 +2 -6
- package/build/index.d.ts +2 -2
- package/build/index.js +2 -2
- package/package.json +1 -1
- package/plugin.json +1 -1
package/README.md
CHANGED
|
@@ -7,14 +7,10 @@ The official [Model Context Protocol](https://modelcontextprotocol.io) server fo
|
|
|
7
7
|
### Claude Code
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
claude mcp add launchpath -- npx -y @launchpath-ai/mcp-server
|
|
10
|
+
claude mcp add -e LAUNCHPATH_API_KEY=lp_key_your_key_here launchpath -- npx -y @launchpath-ai/mcp-server
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
export LAUNCHPATH_API_KEY=lp_key_your_key_here
|
|
17
|
-
```
|
|
13
|
+
One command — replace `lp_key_your_key_here` with your API key. It's saved in your Claude Code config automatically.
|
|
18
14
|
|
|
19
15
|
### Cursor
|
|
20
16
|
|
package/build/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* from Claude Code, Claude Desktop, or any MCP-compatible client.
|
|
7
7
|
*
|
|
8
8
|
* Usage:
|
|
9
|
-
* LAUNCHPATH_API_KEY=lp_key_xxx npx @launchpath/mcp-server
|
|
10
|
-
* LAUNCHPATH_API_KEY=lp_key_xxx LAUNCHPATH_BASE_URL=http://localhost:3000 npx @launchpath/mcp-server
|
|
9
|
+
* LAUNCHPATH_API_KEY=lp_key_xxx npx @launchpath-ai/mcp-server
|
|
10
|
+
* LAUNCHPATH_API_KEY=lp_key_xxx LAUNCHPATH_BASE_URL=http://localhost:3000 npx @launchpath-ai/mcp-server
|
|
11
11
|
*/
|
|
12
12
|
export {};
|
package/build/index.js
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* from Claude Code, Claude Desktop, or any MCP-compatible client.
|
|
7
7
|
*
|
|
8
8
|
* Usage:
|
|
9
|
-
* LAUNCHPATH_API_KEY=lp_key_xxx npx @launchpath/mcp-server
|
|
10
|
-
* LAUNCHPATH_API_KEY=lp_key_xxx LAUNCHPATH_BASE_URL=http://localhost:3000 npx @launchpath/mcp-server
|
|
9
|
+
* LAUNCHPATH_API_KEY=lp_key_xxx npx @launchpath-ai/mcp-server
|
|
10
|
+
* LAUNCHPATH_API_KEY=lp_key_xxx LAUNCHPATH_BASE_URL=http://localhost:3000 npx @launchpath-ai/mcp-server
|
|
11
11
|
*/
|
|
12
12
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
13
13
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
package/package.json
CHANGED
package/plugin.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"mcpServers": {
|
|
10
10
|
"launchpath": {
|
|
11
11
|
"command": "npx",
|
|
12
|
-
"args": ["@launchpath/mcp-server"],
|
|
12
|
+
"args": ["@launchpath-ai/mcp-server"],
|
|
13
13
|
"env": {
|
|
14
14
|
"LAUNCHPATH_API_KEY": {
|
|
15
15
|
"description": "Your LaunchPath API key. Get it from Settings → API Keys in the LaunchPath dashboard.",
|