wp-mcp-gateway 0.1.2 → 0.1.3

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/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ async function main() {
14
14
  const config = loadConfig();
15
15
  const server = new McpServer({
16
16
  name: "wp-mcp-gateway",
17
- version: "0.1.2",
17
+ version: "0.1.3",
18
18
  });
19
19
  const client = new PluginApiClient(config);
20
20
  const policy = new PolicyService(config);
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "wp-mcp-gateway",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "MCP server for managing WordPress content from Claude Desktop — create posts, upload images, manage SEO, and publish without ever opening WordPress.",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
8
  "wp-mcp-gateway": "dist/index.js"
9
9
  },
10
- "files": [
10
+ "files": [
11
11
  "dist/**/*.js",
12
12
  "dist/**/*.d.ts",
13
13
  "dist/guides/**/*.md"