-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.91 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@local-falcon/mcp",
"version": "1.4.0",
"description": "An MCP server for the Local Falcon API.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/local-falcon/mcp"
},
"homepage": "https://www.localfalcon.com",
"bugs": {
"url": "https://github.com/local-falcon/mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"local-falcon",
"ai-seo",
"ai-search-tracking",
"local-seo",
"seo",
"rank-tracking",
"google-business-profile",
"ai-visibility"
],
"scripts": {
"test": "bun test",
"build:ui": "UI_ENTRY=geogrid-heatmap vite build --config vite.ui.config.ts",
"start": "bun run index.ts",
"start:sse": "bun run index.ts sse",
"start:stdio": "bun run index.ts stdio",
"start:http": "bun run index.ts http",
"start:HTTPAndSSE": "bun run index.ts HTTPAndSSE",
"build": "npx rimraf dist && NODE_OPTIONS=--max-old-space-size=4096 tsc --noCheck && npm run build:ui",
"inspector": "npx @modelcontextprotocol/inspector bun start",
"docker:build": "docker build -t local-falcon-mcp .",
"docker:run": "docker run -it --rm --env-file .env --name local-falcon-mcp local-falcon-mcp"
},
"author": "Local Falcon <account@localfalcon.com> (https://www.localfalcon.com)",
"license": "MIT",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"abort-controller": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"node-fetch": "^3.3.2",
"uuid": "^11.1.0",
"zod": "^3.25.0",
"@modelcontextprotocol/ext-apps": "^1.2.2",
"marked": "^17.0.4",
"vite": "^8.0.0",
"vite-plugin-singlefile": "^2.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^5.0.1",
"@types/marked": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}