@pseolint/mcp 0.6.5 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > MCP server for pseolint — audit pSEO sites by template from AI coding assistants.
4
4
 
5
- An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that exposes [pseolint](https://www.npmjs.com/package/pseolint) v0.6.3 auditing tools to AI coding assistants like Claude Code, Claude Desktop, Cursor, and Windsurf.
5
+ An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that exposes [pseolint](https://www.npmjs.com/package/pseolint) v0.7.0 auditing tools to AI coding assistants like Claude Code, Claude Desktop, Cursor, and Windsurf.
6
6
 
7
7
  All tools are namespaced with a `pseolint_` prefix (`pseolint_audit_site`, `pseolint_explain_score`, `pseolint_check_page_technical`, `pseolint_orchestrate_audit`) so they don't collide with other MCP servers, and each returns both human-readable text and machine-readable `structuredContent`.
8
8
 
@@ -205,14 +205,14 @@ Add to `.vscode/mcp.json`:
205
205
 
206
206
  ## What It Checks
207
207
 
208
- 40+ rules, grouped by theme (scored across 4 categories: integrity, discoverability, citation, data):
208
+ 44 rules, grouped by theme (scored across 4 categories: integrity, discoverability, citation, data):
209
209
 
210
210
  - **SpamBrain Risk** — near-duplicate detection, entity-swap doorway pages, thin content, boilerplate ratio
211
211
  - **Content Quality** — unique value per page, heading/meta uniqueness, E-E-A-T signals
212
212
  - **Internal Linking** — orphan pages, dead ends, cluster connectivity, link depth
213
213
  - **Technical SEO** — canonical consistency, sitemap completeness, robots.txt conflicts
214
214
  - **Structured Data** — JSON-LD validation, required fields, schema consistency
215
- - **Cannibalization** — title overlap, keyword collision, URL pattern conflicts
215
+ - **Cannibalization** — URL pattern conflicts (`title-overlap` and `keyword-collision` were dropped in v0.4 for high false-positive rates)
216
216
 
217
217
  ## Links
218
218
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pseolint/mcp",
3
- "version": "0.6.5",
3
+ "version": "0.7.1",
4
4
  "mcpName": "io.github.ouranos-labs/pseolint",
5
5
  "description": "MCP server for pseolint — audit programmatic SEO sites from AI coding assistants. v0.5 adds the AI-orchestrated audit tool that produces a fix manifest with concrete patches.",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@modelcontextprotocol/sdk": "^1.29.0",
48
- "@pseolint/core": "^0.6.5",
48
+ "@pseolint/core": "^0.7.1",
49
49
  "zod": "^4.3.6"
50
50
  }
51
51
  }