@cronicorn/mcp-server 1.4.2 → 1.4.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 +136 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -50,6 +50,90 @@ Add to your Claude Desktop configuration (`~/Library/Application Support/Claude/
|
|
|
50
50
|
}
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
### VS Code / GitHub Copilot
|
|
54
|
+
|
|
55
|
+
**Option 1: VS Code with GitHub Copilot (Native MCP Support)**
|
|
56
|
+
|
|
57
|
+
GitHub Copilot in VS Code supports MCP through [agent mode](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode). Configure in your VS Code settings:
|
|
58
|
+
|
|
59
|
+
1. Open VS Code Settings (JSON) via `Cmd+Shift+P` → "Preferences: Open User Settings (JSON)"
|
|
60
|
+
|
|
61
|
+
2. Add the MCP server configuration:
|
|
62
|
+
|
|
63
|
+
```json
|
|
64
|
+
{
|
|
65
|
+
"github.copilot.chat.mcp.servers": {
|
|
66
|
+
"cronicorn": {
|
|
67
|
+
"command": "cronicorn-mcp"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Alternatively, create an `mcp.json` file in your workspace or user config directory:
|
|
74
|
+
|
|
75
|
+
**User config** (`~/.vscode/mcp.json`):
|
|
76
|
+
```json
|
|
77
|
+
{
|
|
78
|
+
"mcpServers": {
|
|
79
|
+
"cronicorn": {
|
|
80
|
+
"command": "cronicorn-mcp"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
**Workspace config** (`.vscode/mcp.json` in project root):
|
|
87
|
+
```json
|
|
88
|
+
{
|
|
89
|
+
"mcpServers": {
|
|
90
|
+
"cronicorn": {
|
|
91
|
+
"command": "cronicorn-mcp"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
**Option 2: VS Code Extensions**
|
|
98
|
+
|
|
99
|
+
Popular VS Code extensions with MCP support:
|
|
100
|
+
|
|
101
|
+
**[Cline](https://github.com/cline/cline)** - Autonomous coding agent
|
|
102
|
+
```json
|
|
103
|
+
// In Cline's MCP settings
|
|
104
|
+
{
|
|
105
|
+
"mcpServers": {
|
|
106
|
+
"cronicorn": {
|
|
107
|
+
"command": "cronicorn-mcp"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
**[Continue](https://github.com/continuedev/continue)** - AI code assistant
|
|
114
|
+
```json
|
|
115
|
+
// In Continue's config.json
|
|
116
|
+
{
|
|
117
|
+
"mcpServers": {
|
|
118
|
+
"cronicorn": {
|
|
119
|
+
"command": "cronicorn-mcp"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
**[Cursor](https://docs.cursor.com/context/mcp)** - AI code editor (VS Code fork)
|
|
126
|
+
```json
|
|
127
|
+
// In Cursor's MCP settings
|
|
128
|
+
{
|
|
129
|
+
"mcpServers": {
|
|
130
|
+
"cronicorn": {
|
|
131
|
+
"command": "cronicorn-mcp"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
```
|
|
136
|
+
|
|
53
137
|
### First Run - OAuth Device Flow
|
|
54
138
|
|
|
55
139
|
On first run, the server will:
|
|
@@ -61,6 +145,58 @@ On first run, the server will:
|
|
|
61
145
|
|
|
62
146
|
Subsequent runs will use the stored access token automatically.
|
|
63
147
|
|
|
148
|
+
## Keeping Updated
|
|
149
|
+
|
|
150
|
+
The MCP server does not automatically update. When using `npx` or global installation, you'll continue using the cached version until you manually update.
|
|
151
|
+
|
|
152
|
+
### Check Current Version
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
npx @cronicorn/mcp-server --version
|
|
156
|
+
# or for global install
|
|
157
|
+
cronicorn-mcp --version
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### Update Methods
|
|
161
|
+
|
|
162
|
+
**For npx users (recommended):**
|
|
163
|
+
|
|
164
|
+
Option 1: Use the `@latest` tag to always get the newest version
|
|
165
|
+
```json
|
|
166
|
+
{
|
|
167
|
+
"mcpServers": {
|
|
168
|
+
"cronicorn": {
|
|
169
|
+
"command": "npx",
|
|
170
|
+
"args": ["-y", "@cronicorn/mcp-server@latest"]
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Option 2: Clear npm cache and reinstall
|
|
177
|
+
```bash
|
|
178
|
+
npm cache clean --force
|
|
179
|
+
npx @cronicorn/mcp-server
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
**For global installations:**
|
|
183
|
+
|
|
184
|
+
```bash
|
|
185
|
+
npm update -g @cronicorn/mcp-server
|
|
186
|
+
# or
|
|
187
|
+
pnpm update -g @cronicorn/mcp-server
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
### Why Update?
|
|
191
|
+
|
|
192
|
+
Regular updates ensure you have:
|
|
193
|
+
- Latest bug fixes and security patches
|
|
194
|
+
- New features and tools
|
|
195
|
+
- Performance improvements
|
|
196
|
+
- Compatibility with latest MCP clients
|
|
197
|
+
|
|
198
|
+
**Note:** Using `@latest` in your configuration ensures you always run the newest version, but be aware this may occasionally introduce breaking changes. For production use, consider pinning to a specific version and updating manually after reviewing the [changelog](https://github.com/weskerllc/cronicorn/releases).
|
|
199
|
+
|
|
64
200
|
## Available Tools
|
|
65
201
|
|
|
66
202
|
### `create_job`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cronicorn/mcp-server",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MCP server for Cronicorn - enables AI agents to manage cron jobs via Model Context Protocol",
|
|
6
6
|
"author": "Cronicorn",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"ai"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@modelcontextprotocol/sdk": "^1.20.2"
|
|
44
|
-
"@cronicorn/api-contracts": "workspace:*"
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.20.2"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
46
|
+
"@cronicorn/api-contracts": "workspace:*",
|
|
47
47
|
"@modelcontextprotocol/inspector": "^0.17.2",
|
|
48
48
|
"open": "^10.2.0",
|
|
49
49
|
"tsup": "^8.5.0",
|