@typeroll/mcp-server 0.44.2 → 0.44.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/dist/tools/domain.js +4 -3
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/tools/domain.js
CHANGED
|
@@ -64,14 +64,15 @@ export const domainTools = [
|
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
name: 'read_organization_publishing_domains',
|
|
67
|
-
description: 'Read the organization
|
|
67
|
+
description: 'Read the organization site address base, shared media host, live Cloudflare media-domain status and setup instructions. This read does not modify DNS. Requires an organization API key; site keys cannot access organization publishing settings.',
|
|
68
68
|
inputSchema: {},
|
|
69
69
|
handler: withErrorBoundary(async (_args, { client }) => ok(await client.rootGet('publishing/domains'))),
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
name: 'set_organization_publishing_domains',
|
|
73
|
-
description: 'Save
|
|
74
|
-
inputSchema: { revision: z.string(),
|
|
73
|
+
description: 'Save separate organization hostnames: sites_domain for site and version addresses, media_host for shared media. Requires an organization API key and current settings revision. Automatic DNS mode queues media setup; external mode leaves DNS to you. Does not change nameservers or replace an existing media host.',
|
|
74
|
+
inputSchema: { revision: z.string(), sites_domain: z.string().nullable().optional(), media_host: z.string().nullable().optional(),
|
|
75
|
+
default_domain: z.string().nullable().optional().describe('Legacy shorthand for both hostnames; prefer sites_domain and media_host.'), dns_mode: z.enum(['automatic', 'external']) },
|
|
75
76
|
handler: withErrorBoundary(async (args, { client }) => ok(await client.rootPut('publishing/domains', args))),
|
|
76
77
|
},
|
|
77
78
|
{
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typeroll/mcp-server",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.3",
|
|
4
4
|
"description": "Model Context Protocol server for the Typeroll public API. Use with Claude Code or any MCP-compatible client to manage a Typeroll site.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|