@vibescope/mcp-server 0.3.6 → 0.3.8
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/chat.d.ts +7 -0
- package/dist/tools/chat.js +43 -0
- package/dist/tools/index.js +2 -0
- package/dist/tools/project.js +1 -1
- package/package.json +1 -1
- package/src/tools/chat.ts +46 -0
- package/src/tools/index.ts +2 -0
- package/src/tools/project.ts +1 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Project chat tools:
|
|
3
|
+
* - send_project_message
|
|
4
|
+
* - get_project_messages
|
|
5
|
+
*/
|
|
6
|
+
export const chatTools = [
|
|
7
|
+
{
|
|
8
|
+
name: 'send_project_message',
|
|
9
|
+
description: 'Send a message to the project chat channel. All agents and the project owner can see messages here. Use this to communicate status updates, ask questions, report blockers, or coordinate with other agents.',
|
|
10
|
+
inputSchema: {
|
|
11
|
+
type: 'object',
|
|
12
|
+
properties: {
|
|
13
|
+
project_id: {
|
|
14
|
+
type: 'string',
|
|
15
|
+
description: 'Project UUID',
|
|
16
|
+
},
|
|
17
|
+
message: {
|
|
18
|
+
type: 'string',
|
|
19
|
+
description: 'Message content (supports markdown)',
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
required: ['project_id', 'message'],
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
name: 'get_project_messages',
|
|
27
|
+
description: 'Read recent messages from the project chat channel. Use this to check if the user or other agents have posted anything.',
|
|
28
|
+
inputSchema: {
|
|
29
|
+
type: 'object',
|
|
30
|
+
properties: {
|
|
31
|
+
project_id: {
|
|
32
|
+
type: 'string',
|
|
33
|
+
description: 'Project UUID',
|
|
34
|
+
},
|
|
35
|
+
limit: {
|
|
36
|
+
type: 'number',
|
|
37
|
+
description: 'Number of recent messages to fetch (default: 20, max: 100)',
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
required: ['project_id'],
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
];
|
package/dist/tools/index.js
CHANGED
|
@@ -30,6 +30,7 @@ import { gitIssueTools } from './git-issues.js';
|
|
|
30
30
|
import { connectorTools } from './connectors.js';
|
|
31
31
|
import { cloudAgentTools } from './cloud-agents.js';
|
|
32
32
|
import { versionTools } from './version.js';
|
|
33
|
+
import { chatTools } from './chat.js';
|
|
33
34
|
/**
|
|
34
35
|
* All MCP tool definitions combined
|
|
35
36
|
*/
|
|
@@ -59,6 +60,7 @@ export const tools = [
|
|
|
59
60
|
...connectorTools,
|
|
60
61
|
...cloudAgentTools,
|
|
61
62
|
...versionTools,
|
|
63
|
+
...chatTools,
|
|
62
64
|
];
|
|
63
65
|
/**
|
|
64
66
|
* Build the complete tool list from all domain modules
|
package/dist/tools/project.js
CHANGED
|
@@ -61,7 +61,7 @@ export const projectTools = [
|
|
|
61
61
|
},
|
|
62
62
|
goal: {
|
|
63
63
|
type: 'string',
|
|
64
|
-
description: '
|
|
64
|
+
description: 'High-level project goal or purpose (e.g. "A multiplayer card game platform")',
|
|
65
65
|
},
|
|
66
66
|
git_url: {
|
|
67
67
|
type: 'string',
|
package/package.json
CHANGED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Project chat tools:
|
|
3
|
+
* - send_project_message
|
|
4
|
+
* - get_project_messages
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { Tool } from './types.js';
|
|
8
|
+
|
|
9
|
+
export const chatTools: Tool[] = [
|
|
10
|
+
{
|
|
11
|
+
name: 'send_project_message',
|
|
12
|
+
description: 'Send a message to the project chat channel. All agents and the project owner can see messages here. Use this to communicate status updates, ask questions, report blockers, or coordinate with other agents.',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
project_id: {
|
|
17
|
+
type: 'string',
|
|
18
|
+
description: 'Project UUID',
|
|
19
|
+
},
|
|
20
|
+
message: {
|
|
21
|
+
type: 'string',
|
|
22
|
+
description: 'Message content (supports markdown)',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
required: ['project_id', 'message'],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'get_project_messages',
|
|
30
|
+
description: 'Read recent messages from the project chat channel. Use this to check if the user or other agents have posted anything.',
|
|
31
|
+
inputSchema: {
|
|
32
|
+
type: 'object',
|
|
33
|
+
properties: {
|
|
34
|
+
project_id: {
|
|
35
|
+
type: 'string',
|
|
36
|
+
description: 'Project UUID',
|
|
37
|
+
},
|
|
38
|
+
limit: {
|
|
39
|
+
type: 'number',
|
|
40
|
+
description: 'Number of recent messages to fetch (default: 20, max: 100)',
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
required: ['project_id'],
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
];
|
package/src/tools/index.ts
CHANGED
|
@@ -34,6 +34,7 @@ import { gitIssueTools } from './git-issues.js';
|
|
|
34
34
|
import { connectorTools } from './connectors.js';
|
|
35
35
|
import { cloudAgentTools } from './cloud-agents.js';
|
|
36
36
|
import { versionTools } from './version.js';
|
|
37
|
+
import { chatTools } from './chat.js';
|
|
37
38
|
|
|
38
39
|
/**
|
|
39
40
|
* All MCP tool definitions combined
|
|
@@ -64,6 +65,7 @@ export const tools: Tool[] = [
|
|
|
64
65
|
...connectorTools,
|
|
65
66
|
...cloudAgentTools,
|
|
66
67
|
...versionTools,
|
|
68
|
+
...chatTools,
|
|
67
69
|
];
|
|
68
70
|
|
|
69
71
|
/**
|
package/src/tools/project.ts
CHANGED
|
@@ -64,7 +64,7 @@ export const projectTools: Tool[] = [
|
|
|
64
64
|
},
|
|
65
65
|
goal: {
|
|
66
66
|
type: 'string',
|
|
67
|
-
description: '
|
|
67
|
+
description: 'High-level project goal or purpose (e.g. "A multiplayer card game platform")',
|
|
68
68
|
},
|
|
69
69
|
git_url: {
|
|
70
70
|
type: 'string',
|