Skip to content

Commit b57eab2

Browse files
cpoderclaude
andcommitted
Scope npm package to @wm-mcp-server/cli org, first publish live
Scoped package required for org-level npm token. Published v2.7.0 to npm successfully. Updated all docs to use @wm-mcp-server/cli. Usage: npx @wm-mcp-server/cli Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3cc1a13 commit b57eab2

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![CI](https://github.com/cpoder/wm-mcp-server/actions/workflows/ci.yml/badge.svg)](https://github.com/cpoder/wm-mcp-server/actions/workflows/ci.yml)
44
[![crates.io](https://img.shields.io/crates/v/wm-mcp-server.svg)](https://crates.io/crates/wm-mcp-server)
5-
[![npm](https://img.shields.io/npm/v/wm-mcp-server.svg)](https://www.npmjs.com/package/wm-mcp-server)
5+
[![npm](https://img.shields.io/npm/v/@wm-mcp-server/cli.svg)](https://www.npmjs.com/package/@wm-mcp-server/cli)
66

77
An [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server that gives AI assistants full control over [webMethods Integration Server](https://www.ibm.com/docs/en/webmethods-integration/wm-integration-server/11.1.0) -- replacing webMethods Designer for most development and administration tasks.
88

@@ -80,10 +80,10 @@ The AI can guide you step-by-step through setting up:
8080

8181
```bash
8282
# Via npx (no install needed)
83-
npx wm-mcp-server
83+
npx @wm-mcp-server/cli
8484

8585
# Or install globally via npm
86-
npm install -g wm-mcp-server
86+
npm install -g @wm-mcp-server/cli
8787

8888
# Or from crates.io (requires Rust)
8989
cargo install wm-mcp-server
@@ -103,7 +103,7 @@ Add to `.mcp.json` in your project directory:
103103
"mcpServers": {
104104
"webmethods-is": {
105105
"command": "npx",
106-
"args": ["-y", "wm-mcp-server"],
106+
"args": ["-y", "@wm-mcp-server/cli"],
107107
"env": {
108108
"WM_IS_URL": "http://your-is-host:5555",
109109
"WM_IS_USER": "Administrator",

mcp-server-rs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
## Installation
44

55
```bash
6-
npx wm-mcp-server # run via npx (no install needed)
7-
npm install -g wm-mcp-server # install globally via npm
6+
npx @wm-mcp-server/cli # run via npx (no install needed)
7+
npm install -g @wm-mcp-server/cli # install globally via npm
88
cargo install wm-mcp-server # from crates.io (requires Rust)
99
# or download from https://github.com/cpoder/wm-mcp-server/releases
1010
```

npm/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ MCP server for [webMethods Integration Server](https://www.ibm.com/docs/en/webme
55
## Quick Start
66

77
```bash
8-
npx wm-mcp-server
8+
npx @wm-mcp-server/cli
99
```
1010

1111
Or install globally:
1212

1313
```bash
14-
npm install -g wm-mcp-server
14+
npm install -g @wm-mcp-server/cli
1515
```
1616

1717
## MCP Client Configuration
@@ -23,7 +23,7 @@ Add to `.mcp.json` in your project:
2323
"mcpServers": {
2424
"webmethods-is": {
2525
"command": "npx",
26-
"args": ["-y", "wm-mcp-server"],
26+
"args": ["-y", "@wm-mcp-server/cli"],
2727
"env": {
2828
"WM_IS_URL": "http://localhost:5555",
2929
"WM_IS_USER": "Administrator",

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "wm-mcp-server",
2+
"name": "@wm-mcp-server/cli",
33
"version": "2.7.0",
44
"description": "MCP server for webMethods Integration Server — 336 tools replacing Designer for development and administration",
55
"license": "MIT",

0 commit comments

Comments
 (0)