@firfi/huly-mcp 0.9.0 → 0.9.1
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 +1 -1
- package/dist/index.cjs +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -224,7 +224,7 @@ MCP_TRANSPORT=http MCP_HTTP_PORT=8080 MCP_HTTP_HOST=0.0.0.0 npx -y @firfi/huly-m
|
|
|
224
224
|
| `delete_teamspace` | Permanently delete a Huly document teamspace. This action cannot be undone. |
|
|
225
225
|
| `list_documents` | List documents in a Huly teamspace. Returns documents sorted by modification date (newest first). Each result includes a 'url' field pointing to the document in the Huly web app. Supports searching by title substring (titleSearch) and content (contentSearch). |
|
|
226
226
|
| `get_document` | Retrieve full details for a Huly document including markdown content and a 'url' field pointing to the document in the Huly web app. Use this to view document content and metadata. |
|
|
227
|
-
| `create_document` | Create a new document in a Huly teamspace. Content supports full markdown including native Mermaid diagrams (```mermaid blocks render interactively in Huly UI). Returns the created document id and a 'url' field pointing to the document in the Huly web app. Use link_document_to_issue to associate the document with a tracker issue. |
|
|
227
|
+
| `create_document` | Create a new document in a Huly teamspace. Content supports full markdown including native Mermaid diagrams (```mermaid blocks render interactively in Huly UI). Optionally pass parent as a document title or ID to create a nested child document; invalid parents fail instead of silently creating a top-level document. Returns the created document id and a 'url' field pointing to the document in the Huly web app. Use link_document_to_issue to associate the document with a tracker issue. |
|
|
228
228
|
| `edit_document` | Edit an existing Huly document. Two content modes (mutually exclusive): (1) 'content' for full replace, (2) 'old_text' + 'new_text' for targeted search-and-replace. Multiple matches error unless replace_all is true. Empty new_text deletes matched text. Also supports renaming via 'title'. Content supports full markdown including native Mermaid diagrams. Returns a 'url' field pointing to the document in the Huly web app. |
|
|
229
229
|
| `list_inline_comments` | List inline comment threads from a Huly document. Extracts comments embedded in document content as ProseMirror marks. Each comment includes the highlighted text and thread ID. Set includeReplies=true to also fetch thread reply messages with sender names. |
|
|
230
230
|
| `delete_document` | Permanently delete a Huly document. This action cannot be undone. |
|
package/dist/index.cjs
CHANGED
|
@@ -171272,7 +171272,7 @@ var PostHog = class extends PostHogBackendClient {
|
|
|
171272
171272
|
};
|
|
171273
171273
|
|
|
171274
171274
|
// src/version.ts
|
|
171275
|
-
var VERSION = true ? "0.9.
|
|
171275
|
+
var VERSION = true ? "0.9.1" : "0.0.0-dev";
|
|
171276
171276
|
|
|
171277
171277
|
// src/telemetry/posthog.ts
|
|
171278
171278
|
var POSTHOG_API_KEY = "phc_TGfFqCGdnF0p68wuFzd5WSw1IsBvOJW0YgoMJDyZPjm";
|
|
@@ -179709,7 +179709,7 @@ var documentTools = [
|
|
|
179709
179709
|
},
|
|
179710
179710
|
{
|
|
179711
179711
|
name: "create_document",
|
|
179712
|
-
description: "Create a new document in a Huly teamspace. Content supports full markdown including native Mermaid diagrams (```mermaid blocks render interactively in Huly UI). Returns the created document id and a 'url' field pointing to the document in the Huly web app. Use link_document_to_issue to associate the document with a tracker issue.",
|
|
179712
|
+
description: "Create a new document in a Huly teamspace. Content supports full markdown including native Mermaid diagrams (```mermaid blocks render interactively in Huly UI). Optionally pass parent as a document title or ID to create a nested child document; invalid parents fail instead of silently creating a top-level document. Returns the created document id and a 'url' field pointing to the document in the Huly web app. Use link_document_to_issue to associate the document with a tracker issue.",
|
|
179713
179713
|
category: CATEGORY10,
|
|
179714
179714
|
inputSchema: createDocumentParamsJsonSchema,
|
|
179715
179715
|
handler: createToolHandler(
|