-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "anyapi-mcp",
"version": "0.1.5",
"mcpName": "io.github.getanyapi-com/anyapi",
"description": "Local stdio MCP server for AnyAPI - hundreds of scraping and data APIs behind one key, priced per request in USD. Proxies to the hosted AnyAPI MCP server.",
"license": "Apache-2.0",
"type": "module",
"bin": { "anyapi-mcp": "dist/index.js" },
"main": "dist/index.js",
"files": ["dist", "!dist/**/*.test.js"],
"engines": { "node": ">=20" },
"repository": { "type": "git", "url": "git+https://github.com/getanyapi-com/mcp.git" },
"homepage": "https://getanyapi.com",
"bugs": { "url": "https://github.com/getanyapi-com/mcp/issues" },
"keywords": ["mcp", "modelcontextprotocol", "anyapi", "scraping", "data-api", "web-scraping"],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "node --test dist/*.test.js",
"check": "npm run build && npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.3"
}
}