@cplace/test-mcp-server 0.1.1 → 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.
- package/README.md +12 -10
- package/package.json +4 -4
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
|
|
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": "
|
|
38
|
-
"args": ["/
|
|
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
|
|
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": "
|
|
55
|
-
"args": ["
|
|
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.
|
|
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",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"license": "ISC",
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "https://github.com/cplace
|
|
32
|
+
"url": "https://github.com/collaborationFactory/cplace-mcp-server.git"
|
|
33
33
|
},
|
|
34
|
-
"homepage": "https://github.com/cplace
|
|
34
|
+
"homepage": "https://github.com/collaborationFactory/cplace-mcp-server#readme",
|
|
35
35
|
"bugs": {
|
|
36
|
-
"url": "https://github.com/cplace
|
|
36
|
+
"url": "https://github.com/collaborationFactory/cplace-mcp-server/issues"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|
|
39
39
|
"dist",
|