@intangle/mcp-server 2.2.2 → 2.3.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/tool-definitions.js +28 -21
- package/package.json +1 -1
- package/tool-definitions.ts +32 -22
package/dist/tool-definitions.js
CHANGED
|
@@ -44,18 +44,40 @@ export const TOOLS = [
|
|
|
44
44
|
},
|
|
45
45
|
},
|
|
46
46
|
{
|
|
47
|
-
name: "
|
|
48
|
-
title: "View
|
|
49
|
-
description: "
|
|
47
|
+
name: "view_projects",
|
|
48
|
+
title: "View Projects",
|
|
49
|
+
description: "List all projects in a space. Projects are user-created canvases that organize context, tasks, documents, and processes. Use this to discover available projects before viewing their contents.",
|
|
50
50
|
inputSchema: {
|
|
51
51
|
type: "object",
|
|
52
52
|
properties: {
|
|
53
|
-
|
|
53
|
+
space_id: {
|
|
54
|
+
type: "string",
|
|
55
|
+
description: "REQUIRED: Space to list projects from (use view_spaces to see available options)",
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
required: ["space_id"],
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: "view_project",
|
|
63
|
+
title: "View Project",
|
|
64
|
+
description: "View a specific project with all its items (context, tasks, documents, processes). Returns item metadata (IDs, titles, types, status) for each item in the project. Use fetch_items to get full content of specific items.",
|
|
65
|
+
inputSchema: {
|
|
66
|
+
type: "object",
|
|
67
|
+
properties: {
|
|
68
|
+
project_id: {
|
|
69
|
+
type: "string",
|
|
70
|
+
description: "Project ID to view (e.g., 'proj_123...'). Get project IDs from view_projects.",
|
|
71
|
+
},
|
|
72
|
+
space_id: {
|
|
73
|
+
type: "string",
|
|
74
|
+
description: "Optional: Space ID (required if using slug instead of project_id)",
|
|
75
|
+
},
|
|
76
|
+
slug: {
|
|
54
77
|
type: "string",
|
|
55
|
-
description: "
|
|
78
|
+
description: "Optional: Project slug (URL-friendly name). Requires space_id if used.",
|
|
56
79
|
},
|
|
57
80
|
},
|
|
58
|
-
required: ["topic_id"],
|
|
59
81
|
},
|
|
60
82
|
},
|
|
61
83
|
{
|
|
@@ -82,21 +104,6 @@ export const TOOLS = [
|
|
|
82
104
|
properties: {},
|
|
83
105
|
},
|
|
84
106
|
},
|
|
85
|
-
{
|
|
86
|
-
name: "view_topics",
|
|
87
|
-
title: "View Topics",
|
|
88
|
-
description: "View all available topics in a space with their IDs and titles. Use this to get the topic_id needed for view_topic.",
|
|
89
|
-
inputSchema: {
|
|
90
|
-
type: "object",
|
|
91
|
-
properties: {
|
|
92
|
-
space_id: {
|
|
93
|
-
type: "string",
|
|
94
|
-
description: "Space to get topics from",
|
|
95
|
-
},
|
|
96
|
-
},
|
|
97
|
-
required: ["space_id"],
|
|
98
|
-
},
|
|
99
|
-
},
|
|
100
107
|
{
|
|
101
108
|
name: "create_space",
|
|
102
109
|
title: "Create Space",
|
package/package.json
CHANGED
package/tool-definitions.ts
CHANGED
|
@@ -49,20 +49,46 @@ export const TOOLS = [
|
|
|
49
49
|
},
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
|
-
name: "
|
|
53
|
-
title: "View
|
|
52
|
+
name: "view_projects",
|
|
53
|
+
title: "View Projects",
|
|
54
54
|
description:
|
|
55
|
-
"
|
|
55
|
+
"List all projects in a space. Projects are user-created canvases that organize context, tasks, documents, and processes. Use this to discover available projects before viewing their contents.",
|
|
56
56
|
inputSchema: {
|
|
57
57
|
type: "object",
|
|
58
58
|
properties: {
|
|
59
|
-
|
|
59
|
+
space_id: {
|
|
60
60
|
type: "string",
|
|
61
61
|
description:
|
|
62
|
-
"
|
|
62
|
+
"REQUIRED: Space to list projects from (use view_spaces to see available options)",
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
required: ["space_id"],
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: "view_project",
|
|
70
|
+
title: "View Project",
|
|
71
|
+
description:
|
|
72
|
+
"View a specific project with all its items (context, tasks, documents, processes). Returns item metadata (IDs, titles, types, status) for each item in the project. Use fetch_items to get full content of specific items.",
|
|
73
|
+
inputSchema: {
|
|
74
|
+
type: "object",
|
|
75
|
+
properties: {
|
|
76
|
+
project_id: {
|
|
77
|
+
type: "string",
|
|
78
|
+
description:
|
|
79
|
+
"Project ID to view (e.g., 'proj_123...'). Get project IDs from view_projects.",
|
|
80
|
+
},
|
|
81
|
+
space_id: {
|
|
82
|
+
type: "string",
|
|
83
|
+
description:
|
|
84
|
+
"Optional: Space ID (required if using slug instead of project_id)",
|
|
85
|
+
},
|
|
86
|
+
slug: {
|
|
87
|
+
type: "string",
|
|
88
|
+
description:
|
|
89
|
+
"Optional: Project slug (URL-friendly name). Requires space_id if used.",
|
|
63
90
|
},
|
|
64
91
|
},
|
|
65
|
-
required: ["topic_id"],
|
|
66
92
|
},
|
|
67
93
|
},
|
|
68
94
|
{
|
|
@@ -91,22 +117,6 @@ export const TOOLS = [
|
|
|
91
117
|
properties: {},
|
|
92
118
|
},
|
|
93
119
|
},
|
|
94
|
-
{
|
|
95
|
-
name: "view_topics",
|
|
96
|
-
title: "View Topics",
|
|
97
|
-
description:
|
|
98
|
-
"View all available topics in a space with their IDs and titles. Use this to get the topic_id needed for view_topic.",
|
|
99
|
-
inputSchema: {
|
|
100
|
-
type: "object",
|
|
101
|
-
properties: {
|
|
102
|
-
space_id: {
|
|
103
|
-
type: "string",
|
|
104
|
-
description: "Space to get topics from",
|
|
105
|
-
},
|
|
106
|
-
},
|
|
107
|
-
required: ["space_id"],
|
|
108
|
-
},
|
|
109
|
-
},
|
|
110
120
|
{
|
|
111
121
|
name: "create_space",
|
|
112
122
|
title: "Create Space",
|