@timelesscms-com/mcp-server 0.5.0 → 0.6.0
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/dist/tools/bulk.js +1 -1
- package/dist/tools/deploy.js +1 -1
- package/package.json +1 -1
package/dist/tools/bulk.js
CHANGED
|
@@ -6,7 +6,7 @@ function v(version) {
|
|
|
6
6
|
export const bulkTools = [
|
|
7
7
|
{
|
|
8
8
|
name: 'bulk_replace_text',
|
|
9
|
-
description: 'Replace a literal substring or regex across pages in one call. ALWAYS run with dry_run=true first and show the sample_diffs to the user before running the real call. Writes go through the normal pipeline (SEO transforms + revision snapshots).',
|
|
9
|
+
description: 'Replace a literal substring or regex across pages in one call. ALWAYS run with dry_run=true first and show the sample_diffs to the user before running the real call. Writes go through the normal pipeline (SEO transforms + revision snapshots). Response shape: { dry_run, updated, total_matches, pages_with_matches, sample_diffs_shown, additional_pages_with_matches, sample_diffs[], skipped (deprecated) }.',
|
|
10
10
|
inputSchema: {
|
|
11
11
|
pattern: z.string().min(1).describe('Literal substring (default) or JS regex source if regex=true.'),
|
|
12
12
|
replacement: z.string(),
|
package/dist/tools/deploy.js
CHANGED
|
@@ -27,7 +27,7 @@ export const deployTools = [
|
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
name: 'get_deploy_status',
|
|
30
|
-
description:
|
|
30
|
+
description: "Status of a single deploy job. Returns { job, queued_for_seconds, queue_timeout_seconds }. job.status is one of queued | running | succeeded | failed. Polling cadence: ~5s for queued/running. A job stuck in 'queued' for longer than queue_timeout_seconds (default 300s) auto-flips to failed with phase='queue_timeout' — so a single poll past that timestamp returns the terminal state and you can stop polling.",
|
|
31
31
|
inputSchema: { job_id: z.string() },
|
|
32
32
|
handler: withErrorBoundary(async (args, { client, siteId }) => {
|
|
33
33
|
const res = await client.get(siteId, `deploys/${encodeURIComponent(args.job_id)}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timelesscms-com/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Model Context Protocol server for the TimelessCMS public API. Use with Claude Code or any MCP-compatible client to manage a TimelessCMS site.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|