@cplace/test-mcp-server 0.1.0 → 0.1.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/README.md +12 -10
  2. package/package.json +4 -7
package/README.md CHANGED
@@ -12,7 +12,7 @@ An MCP (Model Context Protocol) server that provides Claude Desktop with tools t
12
12
 
13
13
  ## Installation
14
14
 
15
- ### For Development/Local Use
15
+ ### ONLY For Development/Local Use
16
16
 
17
17
  1. Clone this repository
18
18
  2. Install dependencies:
@@ -26,18 +26,17 @@ An MCP (Model Context Protocol) server that provides Claude Desktop with tools t
26
26
 
27
27
  ## Configuration with Claude Desktop
28
28
 
29
- ### For Local Development
30
-
29
+ ### For NPM Installation (recommended)
31
30
  Add this entry to your Claude Desktop MCP server configuration file:
32
31
 
33
32
  ```json
34
33
  {
35
34
  "mcpServers": {
36
35
  "cplace": {
37
- "command": "node",
38
- "args": ["/absolute/path/to/this/project/dist/index.js"],
36
+ "command": "npx",
37
+ "args": ["@cplace/test-mcp-server"],
39
38
  "env": {
40
- "CPLACE_URL": "https://your-cplace-instance.com",
39
+ "CPLACE_URL": "https://your-cplace-instance.com/your-tenant/",
41
40
  "API_TOKEN": "your-api-token"
42
41
  }
43
42
  }
@@ -45,16 +44,17 @@ Add this entry to your Claude Desktop MCP server configuration file:
45
44
  }
46
45
  ```
47
46
 
48
- ### For NPM Installation (when published)
47
+ ### For Local Development
48
+ Add this entry to your Claude Desktop MCP server configuration file:
49
49
 
50
50
  ```json
51
51
  {
52
52
  "mcpServers": {
53
53
  "cplace": {
54
- "command": "npx",
55
- "args": ["@cplace/test-mcp-server"],
54
+ "command": "node",
55
+ "args": ["/absolute/path/to/this/project/dist/index.js"],
56
56
  "env": {
57
- "CPLACE_URL": "https://your-cplace-instance.com",
57
+ "CPLACE_URL": "https://your-cplace-instance.com/your-tenant/",
58
58
  "API_TOKEN": "your-api-token"
59
59
  }
60
60
  }
@@ -62,6 +62,8 @@ Add this entry to your Claude Desktop MCP server configuration file:
62
62
  }
63
63
  ```
64
64
 
65
+
66
+
65
67
  ## Available Tools
66
68
 
67
69
  - `cplace_list_workspaces` - Get all workspaces with essential properties
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cplace/test-mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server that provides Claude Desktop with tools to interact with cplace APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,16 +27,13 @@
27
27
  ],
28
28
  "author": "collaboration Factory AG",
29
29
  "license": "ISC",
30
- "publishConfig": {
31
- "access": "public"
32
- },
33
30
  "repository": {
34
31
  "type": "git",
35
- "url": "https://github.com/cplace/mcp-server.git"
32
+ "url": "https://github.com/collaborationFactory/cplace-mcp-server.git"
36
33
  },
37
- "homepage": "https://github.com/cplace/mcp-server#readme",
34
+ "homepage": "https://github.com/collaborationFactory/cplace-mcp-server#readme",
38
35
  "bugs": {
39
- "url": "https://github.com/cplace/mcp-server/issues"
36
+ "url": "https://github.com/collaborationFactory/cplace-mcp-server/issues"
40
37
  },
41
38
  "files": [
42
39
  "dist",