@chronova/mcp-server 1.0.2 → 1.0.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.
- package/README.md +6 -6
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -5,12 +5,12 @@ MCP server that exposes Chronova developer productivity data to AI agents. Built
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
# Run directly
|
|
9
|
-
npx @chronova/mcp-server
|
|
8
|
+
# Run directly (stdio transport for MCP clients)
|
|
9
|
+
npx -y @chronova/mcp-server
|
|
10
10
|
|
|
11
11
|
# Or install globally
|
|
12
12
|
npm install -g @chronova/mcp-server
|
|
13
|
-
chronova-mcp
|
|
13
|
+
chronova-mcp-server
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
## Configuration
|
|
@@ -51,7 +51,7 @@ Add to `claude_desktop_config.json`:
|
|
|
51
51
|
"mcpServers": {
|
|
52
52
|
"chronova": {
|
|
53
53
|
"command": "npx",
|
|
54
|
-
"args": ["@chronova/mcp-server"],
|
|
54
|
+
"args": ["-y", "@chronova/mcp-server"],
|
|
55
55
|
"env": {
|
|
56
56
|
"CHRONOVA_API_KEY": "your-api-key"
|
|
57
57
|
}
|
|
@@ -69,7 +69,7 @@ Add to `.cursor/mcp.json`:
|
|
|
69
69
|
"mcpServers": {
|
|
70
70
|
"chronova": {
|
|
71
71
|
"command": "npx",
|
|
72
|
-
"args": ["@chronova/mcp-server"],
|
|
72
|
+
"args": ["-y", "@chronova/mcp-server"],
|
|
73
73
|
"env": {
|
|
74
74
|
"CHRONOVA_API_KEY": "your-api-key"
|
|
75
75
|
}
|
|
@@ -87,7 +87,7 @@ Add to `opencode.json` under `mcp`:
|
|
|
87
87
|
"mcp": {
|
|
88
88
|
"chronova": {
|
|
89
89
|
"type": "local",
|
|
90
|
-
"command": ["npx", "@chronova/mcp-server"],
|
|
90
|
+
"command": ["npx", "-y", "@chronova/mcp-server"],
|
|
91
91
|
"enabled": true,
|
|
92
92
|
"env": {
|
|
93
93
|
"CHRONOVA_API_KEY": "your-api-key"
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chronova/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"chronova-mcp": "./dist/
|
|
8
|
-
"chronova-mcp-stdio": "./dist/stdio.js"
|
|
7
|
+
"chronova-mcp-server": "./dist/stdio.js"
|
|
9
8
|
},
|
|
10
9
|
"files": [
|
|
11
10
|
"dist",
|