string-catalog-mcp 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 CHANGED
@@ -13,18 +13,14 @@ pnpm build
13
13
 
14
14
  ## Usage with Claude Code
15
15
 
16
- ```bash
17
- pnpm run mcp:add
18
- ```
19
-
20
- Or manually add to your MCP config:
16
+ Add to your MCP config:
21
17
 
22
18
  ```json
23
19
  {
24
20
  "mcpServers": {
25
21
  "string-catalog-mcp": {
26
- "command": "node",
27
- "args": ["/path/to/string-catalog-mcp/dist/index.js"]
22
+ "command": "pnpm",
23
+ "args": ["dlx", "string-catalog-mcp"]
28
24
  }
29
25
  }
30
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "string-catalog-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "MCP server for interacting with Xcode String Catalog (.xcstrings) files",
6
6
  "main": "dist/index.js",
@@ -31,6 +31,14 @@
31
31
  ],
32
32
  "author": "Khoa Pham",
33
33
  "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/khoa/string-catalog-mcp.git"
37
+ },
38
+ "homepage": "https://github.com/khoa/string-catalog-mcp",
39
+ "bugs": {
40
+ "url": "https://github.com/khoa/string-catalog-mcp/issues"
41
+ },
34
42
  "dependencies": {
35
43
  "@modelcontextprotocol/sdk": "^1.25.1",
36
44
  "zod": "^4.2.1"
package/src/index.ts CHANGED
@@ -7,7 +7,7 @@ import { registerAllPrompts } from './mcp/prompts/index';
7
7
 
8
8
  const server = new McpServer({
9
9
  name: 'string-catalog-mcp',
10
- version: '1.0.0',
10
+ version: '1.0.1',
11
11
  });
12
12
 
13
13
  registerAllTools(server);