appfigures-mcp 0.1.0

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/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # appfigures-mcp
2
+
3
+ To install dependencies:
4
+
5
+ ```bash
6
+ bun install
7
+ ```
8
+
9
+ To run locally:
10
+
11
+ ```bash
12
+ APPFIGURES_TOKEN=pat_... bun run index.ts
13
+ ```
14
+
15
+ This project was created using `bun init` in bun v1.3.3. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
16
+
17
+ ## Environment
18
+
19
+ - `APPFIGURES_TOKEN` (required): Personal Access Token or OAuth 2.0 access token.
20
+ - `APPFIGURES_USER_AGENT` (optional): Custom User-Agent header for API requests.
21
+
22
+ ## npm / npx
23
+
24
+ After publishing, you can run:
25
+
26
+ ```bash
27
+ APPFIGURES_TOKEN=pat_... npx appfigures-mcp
28
+ ```
29
+
30
+ To use in an MCP client, configure the command to `npx` with args `appfigures-mcp`, and pass `APPFIGURES_TOKEN` in the environment.