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 +30 -0
- package/dist/index.js +28559 -0
- package/docs/appfigures/api-authentication.md +52 -0
- package/docs/appfigures/api-basics.md +59 -0
- package/docs/appfigures/api-featured.md +272 -0
- package/docs/appfigures/api-products.md +21 -0
- package/docs/appfigures/api-reports-ratings.md +248 -0
- package/docs/appfigures/api-scopes.md +49 -0
- package/docs/appfigures/index.md +31 -0
- package/docs/appfigures/oauth-2.md +183 -0
- package/docs/appfigures/page_000.md +31 -0
- package/docs/appfigures/page_001.md +210 -0
- package/docs/appfigures/page_002.md +588 -0
- package/docs/appfigures/page_003.md +106 -0
- package/docs/appfigures/page_004.md +9 -0
- package/docs/appfigures/page_005.md +172 -0
- package/docs/appfigures/page_006.md +129 -0
- package/docs/appfigures/page_007.md +49 -0
- package/docs/appfigures/page_008.md +103 -0
- package/docs/appfigures/page_009.md +74 -0
- package/docs/appfigures/page_010.md +72 -0
- package/docs/appfigures/page_011.md +244 -0
- package/docs/appfigures/page_012.md +248 -0
- package/docs/appfigures/page_013.md +179 -0
- package/docs/appfigures/page_014.md +182 -0
- package/docs/appfigures/personal-access-tokens.md +51 -0
- package/docs/appfigures/public-data-access.md +34 -0
- package/docs/build-mcp-server.md +2296 -0
- package/package.json +31 -0
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.
|