@flowrelay/mcp-server 1.0.13 → 1.0.14

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Adriano Sorbello (atrisorb)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -9,7 +9,7 @@ It connects to Flow Relay API v1 using an API key and supports:
9
9
  ## Package
10
10
 
11
11
  - Name: @flowrelay/mcp-server
12
- - Version: 1.0.13
12
+ - Version: 1.0.14
13
13
 
14
14
  ## What Is Included
15
15
 
@@ -105,4 +105,5 @@ npm pack
105
105
 
106
106
  ## Related Docs
107
107
 
108
- - Repository overview: ../README.md
108
+ - Documentation & Platform: https://www.flowrelay.it
109
+
package/dist/api.js CHANGED
@@ -11,8 +11,10 @@ export class FlowRelayAPI {
11
11
  }
12
12
  async requestRaw(path, options) {
13
13
  const url = `${this.baseUrl}/api/v1${path}`;
14
+ const signal = options?.signal ?? AbortSignal.timeout(30_000);
14
15
  const res = await fetch(url, {
15
16
  ...options,
17
+ signal,
16
18
  headers: {
17
19
  'Authorization': `Bearer ${this.apiKey}`,
18
20
  'Content-Type': 'application/json',
package/dist/index.js CHANGED
@@ -5,9 +5,7 @@ import { z } from 'zod';
5
5
  import { FlowRelayAPI } from './api.js';
6
6
  import { createRequire } from 'node:module';
7
7
  const { version: PKG_VERSION } = createRequire(import.meta.url)('../package.json');
8
- // Canonical source vocabulary. Mirrors ALL_SOURCES in the web app's @/types
9
- // (this is a separate published package, so it can't import it). The parity
10
- // test tests/client-source-parity.test.ts fails if the two ever diverge.
8
+ // Canonical source vocabulary.
11
9
  const SOURCES = [
12
10
  'github',
13
11
  'slack',
package/package.json CHANGED
@@ -1,14 +1,17 @@
1
1
  {
2
2
  "name": "@flowrelay/mcp-server",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
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",
7
- "author": "atrisorb",
7
+ "author": "atrisorb <https://github.com/atrisorb>",
8
8
  "homepage": "https://www.flowrelay.it",
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "git+https://github.com/atrisorb/flow-relay.git"
11
+ "url": "git+https://github.com/atrisorb/flowrelay-mcp-server.git"
12
+ },
13
+ "publishConfig": {
14
+ "access": "public"
12
15
  },
13
16
  "keywords": [
14
17
  "mcp",