@forkpoint/agent-lighthouse-mcp 0.2.0 → 0.2.1
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 +32 -0
- package/package.json +9 -6
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# @forkpoint/agent-lighthouse-mcp
|
|
2
|
+
|
|
3
|
+
Model Context Protocol server for Agent Lighthouse.
|
|
4
|
+
|
|
5
|
+
Use this package to let Claude Desktop, Cursor, and other MCP-compatible agentic IDEs audit live websites for AI-agent readiness.
|
|
6
|
+
|
|
7
|
+
## Claude Desktop / Cursor
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"mcpServers": {
|
|
12
|
+
"agent-lighthouse": {
|
|
13
|
+
"command": "npx",
|
|
14
|
+
"args": ["-y", "@forkpoint/agent-lighthouse-mcp"]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## What It Exposes
|
|
21
|
+
|
|
22
|
+
The MCP server wraps Agent Lighthouse scans so an assistant can check `llms.txt`, robots.txt AI crawler access, Schema.org, WebMCP, OpenAPI discovery, accessibility, semantic HTML, AEO/GEO signals, and technical readiness from inside the IDE.
|
|
23
|
+
|
|
24
|
+
## Links
|
|
25
|
+
|
|
26
|
+
- Documentation: https://forkpoint.github.io/agent-lighthouse/
|
|
27
|
+
- Repository: https://github.com/ForkPoint/agent-lighthouse
|
|
28
|
+
- CLI package: https://www.npmjs.com/package/@forkpoint/agent-lighthouse
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
GPL-3.0-only
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forkpoint/agent-lighthouse-mcp",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Model Context Protocol (MCP) server
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Model Context Protocol (MCP) server that lets Claude, Cursor, and agentic IDEs audit website AI-agent readiness with Agent Lighthouse",
|
|
5
5
|
"author": "ForkPoint",
|
|
6
6
|
"license": "GPL-3.0-only",
|
|
7
|
-
"homepage": "https://github.
|
|
7
|
+
"homepage": "https://forkpoint.github.io/agent-lighthouse/",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/ForkPoint/agent-lighthouse.git",
|
|
@@ -21,7 +21,10 @@
|
|
|
21
21
|
"model-context-protocol",
|
|
22
22
|
"ai-agents",
|
|
23
23
|
"claude",
|
|
24
|
-
"cursor"
|
|
24
|
+
"cursor",
|
|
25
|
+
"agent-readiness",
|
|
26
|
+
"llms-txt",
|
|
27
|
+
"webmcp"
|
|
25
28
|
],
|
|
26
29
|
"bin": {
|
|
27
30
|
"agent-lighthouse-mcp": "./dist/server.js"
|
|
@@ -44,8 +47,8 @@
|
|
|
44
47
|
},
|
|
45
48
|
"dependencies": {
|
|
46
49
|
"@modelcontextprotocol/sdk": "^1.5.0",
|
|
47
|
-
"@forkpoint/agent-lighthouse-core": "0.2.
|
|
48
|
-
"@forkpoint/agent-lighthouse-report": "0.2.
|
|
50
|
+
"@forkpoint/agent-lighthouse-core": "0.2.1",
|
|
51
|
+
"@forkpoint/agent-lighthouse-report": "0.2.1"
|
|
49
52
|
},
|
|
50
53
|
"devDependencies": {
|
|
51
54
|
"@types/node": "^22.10.5",
|