@websamurai/mcp-wp-remote 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -18,7 +18,7 @@ if( args[ 2 ] ) {
18
18
  }
19
19
 
20
20
  // Add the endpoint path if not present
21
- const endpoint = '/wp-json/samur-ai/v1/mcp';
21
+ const endpoint = '/wp-json/websamurai/v1/mcp';
22
22
  if ( ! url.endsWith( endpoint ) ) {
23
23
  url = url.replace( /\/$/, '' ) + endpoint;
24
24
  }
@@ -47,7 +47,7 @@ console.log( JSON.stringify( {
47
47
  level: "info",
48
48
  logger: "stdio",
49
49
  data: {
50
- message: "Welcome to the SamuraiWP MCP Remote Client!",
50
+ message: "Welcome to the WebSamurai MCP Remote Client!",
51
51
  }
52
52
  }
53
53
  } ) );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@websamurai/mcp-wp-remote",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "STDIO to WordPress JSON-RPC bridge for MCP protocol",
5
5
  "main": "index.js",
6
6
  "type": "module",