-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "@automatelab/citation-intelligence",
"version": "0.11.0",
"mcpName": "io.github.AutomateLab-tech/citation-intelligence",
"description": "What LLMs cite, for agents. MCP server: check what Perplexity, Claude, ChatGPT, Gemini, Bing, and Google AI Overviews cite for any query. Self-hosted, BYO API key.",
"license": "MIT",
"author": "automatelab.tech",
"homepage": "https://automatelab.tech/products/mcp/citation-intelligence/",
"repository": {
"type": "git",
"url": "https://github.com/AutomateLab-tech/citation-intelligence.git"
},
"engines": {
"node": ">=20"
},
"type": "module",
"bin": {
"citation-intelligence": "dist/index.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"cheerio": "1.0.0",
"google-auth-library": "9.15.0",
"robots-parser": "3.0.1",
"undici": "7.25.0",
"zod": "3.25.76"
},
"devDependencies": {
"@types/node": "22.19.19",
"tsx": "4.22.0",
"typescript": "5.7.3",
"vitest": "3.2.4"
},
"files": [
"dist",
"smithery.yaml",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"citation",
"ai-search",
"geo",
"aeo",
"llm-visibility",
"perplexity",
"ai-overview",
"agent",
"self-hosted"
]
}