@pseolint/mcp 0.2.1 → 0.3.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 +12 -0
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -4,6 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that exposes [pseolint](https://www.npmjs.com/package/pseolint) auditing tools to AI coding assistants like Claude Code, Claude Desktop, Cursor, and Windsurf.
|
|
6
6
|
|
|
7
|
+
### Safety defaults (v0.3.3+)
|
|
8
|
+
|
|
9
|
+
All three tools default to `safeMode: "saas"` — AI assistants running in end-user
|
|
10
|
+
environments can't be tricked into scanning AWS/GCP metadata endpoints, localhost,
|
|
11
|
+
or RFC1918 networks via a malicious URL argument. Specifically:
|
|
12
|
+
|
|
13
|
+
- `guardSsrf: true` — DNS-validated private-range check on the source URL,
|
|
14
|
+
sitemap entries, redirect hops, and discovered links
|
|
15
|
+
- `respectRobotsTxt: true` — sitemap URLs Disallow'd by the target's `robots.txt`
|
|
16
|
+
are skipped instead of crawled
|
|
17
|
+
- Tighter `maxFetchBytes` (10 MB) and `maxCrawlDiscovered` (2000) caps
|
|
18
|
+
|
|
7
19
|
## Tools
|
|
8
20
|
|
|
9
21
|
### `audit_site`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pseolint/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "MCP server for pseolint — audit programmatic SEO sites from AI coding assistants",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ouranos Labs <contact@ouranos-labs.dev>",
|
|
@@ -10,7 +10,15 @@
|
|
|
10
10
|
"url": "https://github.com/ouranos-labs/pseolint.git",
|
|
11
11
|
"directory": "packages/mcp"
|
|
12
12
|
},
|
|
13
|
-
"keywords": [
|
|
13
|
+
"keywords": [
|
|
14
|
+
"mcp",
|
|
15
|
+
"model-context-protocol",
|
|
16
|
+
"seo",
|
|
17
|
+
"pseo",
|
|
18
|
+
"spambrain",
|
|
19
|
+
"lint",
|
|
20
|
+
"ai"
|
|
21
|
+
],
|
|
14
22
|
"type": "module",
|
|
15
23
|
"bin": {
|
|
16
24
|
"pseolint-mcp": "dist/bin.js"
|