@furaflight/mcp 0.0.8 → 0.0.9

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/README.md +22 -7
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -6,17 +6,32 @@ search API, so an LLM can search flights — including flexible date-range and
6
6
  duration-of-stay searches — without needing to know IATA codes or the
7
7
  upstream API's parameter names.
8
8
 
9
- ## Requirements
9
+ ## Use as an MCP server
10
10
 
11
- - [Bun](https://bun.sh) version pinned via `mise.toml`
11
+ The server speaks MCP over stdio and is published to npm as `@furaflight/mcp`
12
+ with precompiled binaries for every major platform — no local Bun/Node setup
13
+ needed. Add it to your MCP client's config:
12
14
 
13
- ## Install & run
15
+ ```json
16
+ {
17
+ "mcpServers": {
18
+ "furaflight": {
19
+ "command": "npx",
20
+ "args": ["-y", "@furaflight/mcp"]
21
+ }
22
+ }
23
+ }
24
+ ```
25
+
26
+ For Claude Code specifically, you can instead register it via the CLI:
27
+
28
+ ```sh
29
+ claude mcp add furaflight -- npx -y @furaflight/mcp
30
+ ```
31
+
32
+ ## Development
14
33
 
15
34
  ```sh
16
35
  bun install
17
36
  bun run src/main.ts
18
37
  ```
19
-
20
- The server speaks MCP over stdio. Point your MCP client (Claude Code, Claude
21
- Desktop, etc.) at `bun run <path-to-repo>/src/main.ts`, or run it directly
22
- via its `bin` entry once installed as a dependency.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@furaflight/mcp",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "MCP server exposing a flight search tool backed by flightlist.io",
5
5
  "homepage": "https://github.com/eddienubes/furaflight#readme",
6
6
  "bugs": {
@@ -50,13 +50,13 @@
50
50
  "typescript": "^7.0.2"
51
51
  },
52
52
  "optionalDependencies": {
53
- "@furaflight/mcp-darwin-arm64": "0.0.8",
54
- "@furaflight/mcp-darwin-x64": "0.0.8",
55
- "@furaflight/mcp-linux-arm64": "0.0.8",
56
- "@furaflight/mcp-linux-arm64-musl": "0.0.8",
57
- "@furaflight/mcp-linux-x64": "0.0.8",
58
- "@furaflight/mcp-linux-x64-musl": "0.0.8",
59
- "@furaflight/mcp-win32-arm64": "0.0.8",
60
- "@furaflight/mcp-win32-x64": "0.0.8"
53
+ "@furaflight/mcp-darwin-arm64": "0.0.9",
54
+ "@furaflight/mcp-darwin-x64": "0.0.9",
55
+ "@furaflight/mcp-linux-arm64": "0.0.9",
56
+ "@furaflight/mcp-linux-arm64-musl": "0.0.9",
57
+ "@furaflight/mcp-linux-x64": "0.0.9",
58
+ "@furaflight/mcp-linux-x64-musl": "0.0.9",
59
+ "@furaflight/mcp-win32-arm64": "0.0.9",
60
+ "@furaflight/mcp-win32-x64": "0.0.9"
61
61
  }
62
62
  }