@flowrelay/mcp-server 0.3.2 → 0.3.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/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ if (!apiKey) {
|
|
|
12
12
|
const api = new FlowRelayAPI(apiKey, process.env.FLOWRELAY_BASE_URL);
|
|
13
13
|
const server = new McpServer({
|
|
14
14
|
name: 'flowrelay',
|
|
15
|
-
version: '0.3.
|
|
15
|
+
version: '0.3.3',
|
|
16
16
|
});
|
|
17
17
|
// ── Tool: list handoffs ──────────────────────────────────────────────
|
|
18
18
|
server.tool('list_handoffs', 'List your Flow Relay handoffs. Returns recent handoffs with summaries, decisions, and next steps.', {
|
|
@@ -42,7 +42,7 @@ server.tool('list_handoffs', 'List your Flow Relay handoffs. Returns recent hand
|
|
|
42
42
|
});
|
|
43
43
|
// ── Tool: generate handoff ───────────────────────────────────────────
|
|
44
44
|
server.tool('generate_handoff', 'Generate a new context handoff from your connected integrations. Summarizes recent activity into decisions, open questions, and next steps. Optionally filter by specific projects/repos/channels and event types per source.', {
|
|
45
|
-
sources: z.array(z.enum(['github', 'slack', 'linear', 'notion', 'jira', 'gitlab', 'azure_devops', 'figma']))
|
|
45
|
+
sources: z.array(z.enum(['github', 'slack', 'linear', 'notion', 'jira', 'gitlab', 'bitbucket', 'azure_devops', 'figma']))
|
|
46
46
|
.optional()
|
|
47
47
|
.describe('Specific sources to include (omit for all connected sources)'),
|
|
48
48
|
filters: z.record(z.string(), z.object({
|
|
@@ -67,7 +67,7 @@ server.tool('generate_handoff', 'Generate a new context handoff from your connec
|
|
|
67
67
|
}
|
|
68
68
|
});
|
|
69
69
|
// ── Tool: list integrations ─────────────────────────────────────────
|
|
70
|
-
server.tool('list_integrations', 'List your connected Flow Relay integrations (GitHub, Slack, Linear, Notion, Jira, GitLab, Azure DevOps, Figma).', {}, async () => {
|
|
70
|
+
server.tool('list_integrations', 'List your connected Flow Relay integrations (GitHub, Slack, Linear, Notion, Jira, GitLab, Bitbucket, Azure DevOps, Figma).', {}, async () => {
|
|
71
71
|
const { integrations } = await api.listIntegrations();
|
|
72
72
|
if (integrations.length === 0) {
|
|
73
73
|
return { content: [{ type: 'text', text: 'No integrations connected. Visit https://www.flowrelay.it/integrations to set up.' }] };
|
|
@@ -80,7 +80,7 @@ server.tool('list_integrations', 'List your connected Flow Relay integrations (G
|
|
|
80
80
|
});
|
|
81
81
|
// ── Tool: list recent events ─────────────────────────────────────────
|
|
82
82
|
server.tool('list_events', 'List recent context events (commits, messages, issues, etc.) from your connected integrations.', {
|
|
83
|
-
source: z.enum(['github', 'slack', 'linear', 'notion', 'jira', 'gitlab', 'azure_devops', 'figma'])
|
|
83
|
+
source: z.enum(['github', 'slack', 'linear', 'notion', 'jira', 'gitlab', 'bitbucket', 'azure_devops', 'figma'])
|
|
84
84
|
.optional()
|
|
85
85
|
.describe('Filter by integration source'),
|
|
86
86
|
limit: z.number().min(1).max(100).default(20).describe('Max number of events'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowrelay/mcp-server",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Flow Relay MCP Server for Claude Desktop and Claude Code — handoffs, integrations, and context events via natural conversation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|