@furaflight/mcp 0.0.1
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 +674 -0
- package/README.md +22 -0
- package/dist/furaflight +0 -0
- package/dist/main.js.map +222 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# furaflight
|
|
2
|
+
|
|
3
|
+
An MCP (Model Context Protocol) server exposing a single `search` tool that
|
|
4
|
+
wraps [flightlist.io](https://www.flightlist.io)'s unauthenticated flight
|
|
5
|
+
search API, so an LLM can search flights — including flexible date-range and
|
|
6
|
+
duration-of-stay searches — without needing to know IATA codes or the
|
|
7
|
+
upstream API's parameter names.
|
|
8
|
+
|
|
9
|
+
## Requirements
|
|
10
|
+
|
|
11
|
+
- [Bun](https://bun.sh) — version pinned via `mise.toml`
|
|
12
|
+
|
|
13
|
+
## Install & run
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
bun install
|
|
17
|
+
bun run src/main.ts
|
|
18
|
+
```
|
|
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/dist/furaflight
ADDED
|
Binary file
|