-
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.6 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.6 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": "mcp-server-ai-agent-search-optimization",
"version": "0.1.1",
"mcpName": "io.github.SeyitKaanGunes/ai-agent-search-optimization",
"description": "MCP server for AI search optimization, crawler readiness, llms.txt, and GEO/AEO workflows.",
"type": "module",
"bin": {
"mcp-server-ai-agent-search-optimization": "dist/server.js"
},
"files": [
"dist",
"ai-agent-search-optimization",
"server.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"start": "node dist/server.js",
"inspect": "npx @modelcontextprotocol/inspector node dist/server.js",
"validate:mcp": "node scripts/mcp-smoke-test.mjs",
"validate:pack": "npm pack --dry-run",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-search",
"geo",
"aeo",
"llmo",
"llms.txt",
"codex-skill"
],
"author": "Seyit Kaan Gunes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SeyitKaanGunes/ai-agent-search-optimization.git"
},
"bugs": {
"url": "https://github.com/SeyitKaanGunes/ai-agent-search-optimization/issues"
},
"homepage": "https://github.com/SeyitKaanGunes/ai-agent-search-optimization#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.19.6",
"typescript": "^5.9.3"
}
}