@flowrelay/mcp-server 1.0.21 → 1.0.22
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 +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -46,13 +46,17 @@ const SOURCES = [
|
|
|
46
46
|
'zendesk',
|
|
47
47
|
'snyk',
|
|
48
48
|
'fireflies',
|
|
49
|
+
'zoom',
|
|
50
|
+
'grafana',
|
|
51
|
+
'google_calendar',
|
|
52
|
+
'google_drive',
|
|
49
53
|
];
|
|
50
54
|
const SourceEnum = z.enum(SOURCES);
|
|
51
55
|
const SourceFilterSchema = z.object({
|
|
52
56
|
projects: z.array(z.string()).optional().describe('Resource ids from list_filter_options[source].projects (repos, channels, boards). Use the exact id, not the display label.'),
|
|
53
57
|
eventTypes: z.array(z.string()).optional().describe('Event-type values from list_filter_options (e.g. "push", "issue_created"). Case-sensitive; provider-driven. A value that does not exist matches no events (it is not rejected).'),
|
|
54
58
|
branches: z.array(z.string()).optional().describe('Git branch names (e.g. "main", "develop") – git sources only (github, gitlab, bitbucket, azure_devops). Using this on a non-git source is a 400.'),
|
|
55
|
-
priorities: z.array(z.string()).optional().describe('Priority values from list_filter_options (e.g. "high", "urgent") – jira, linear, sentry, pagerduty, incident_io, clickup, zendesk, snyk only. Using this on another source is a 400; unrecognized values simply match no events.'),
|
|
59
|
+
priorities: z.array(z.string()).optional().describe('Priority values from list_filter_options (e.g. "high", "urgent") – jira, linear, sentry, pagerduty, incident_io, clickup, zendesk, snyk, grafana only. Using this on another source is a 400; unrecognized values simply match no events.'),
|
|
56
60
|
});
|
|
57
61
|
const FiltersSchema = z.record(z.string(), SourceFilterSchema)
|
|
58
62
|
.optional()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowrelay/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
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": "AGPL-3.0-or-later",
|