@flowrelay/mcp-server 0.3.5 → 0.3.6

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -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', 'discord', 'linear', 'notion', 'jira', 'gitlab', 'bitbucket', 'azure_devops', 'figma']))
45
+ sources: z.array(z.enum(['github', 'slack', 'discord', 'linear', 'notion', 'confluence', '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, Discord, Linear, Notion, Jira, GitLab, Bitbucket, Azure DevOps, Figma).', {}, async () => {
70
+ server.tool('list_integrations', 'List your connected Flow Relay integrations (GitHub, Slack, Discord, Linear, Notion, Confluence, 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', 'discord', 'linear', 'notion', 'jira', 'gitlab', 'bitbucket', 'azure_devops', 'figma'])
83
+ source: z.enum(['github', 'slack', 'discord', 'linear', 'notion', 'confluence', '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.5",
3
+ "version": "0.3.6",
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",