indxel-mcp 0.1.0
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 +92 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +14730 -0
- package/package.json +43 -0
package/README.md
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# indxel-mcp
|
|
2
|
+
|
|
3
|
+
MCP server that exposes [indxel](https://indxel.com) SEO auditing tools to AI assistants.
|
|
4
|
+
|
|
5
|
+
Works with Claude Desktop, Cursor, Claude Code, and any MCP-compatible client.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g indxel-mcp
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or run directly:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx indxel-mcp
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Configuration
|
|
20
|
+
|
|
21
|
+
### Claude Desktop
|
|
22
|
+
|
|
23
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"mcpServers": {
|
|
28
|
+
"indxel": {
|
|
29
|
+
"command": "npx",
|
|
30
|
+
"args": ["-y", "indxel-mcp"]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Cursor
|
|
37
|
+
|
|
38
|
+
Add to `.cursor/mcp.json` in your project:
|
|
39
|
+
|
|
40
|
+
```json
|
|
41
|
+
{
|
|
42
|
+
"mcpServers": {
|
|
43
|
+
"indxel": {
|
|
44
|
+
"command": "npx",
|
|
45
|
+
"args": ["-y", "indxel-mcp"]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Claude Code
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
claude mcp add indxel -- npx -y indxel-mcp
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Tools
|
|
58
|
+
|
|
59
|
+
| Tool | Description |
|
|
60
|
+
|------|-------------|
|
|
61
|
+
| `seo_check` | Validate SEO metadata and return a score (0-100), grade (A-F), and detailed rule results |
|
|
62
|
+
| `seo_score` | Quick score check — returns just the numeric score and letter grade |
|
|
63
|
+
| `seo_audit_url` | Fetch a live URL, extract metadata from HTML, and run a full audit |
|
|
64
|
+
| `seo_generate_metadata` | Generate a Next.js-compatible Metadata object from page info |
|
|
65
|
+
| `seo_generate_structured_data` | Generate JSON-LD structured data for a given schema type |
|
|
66
|
+
| `seo_crawl` | Crawl a website following internal links, audit every page, return per-page scores and cross-page analysis |
|
|
67
|
+
| `seo_check_sitemap` | Fetch and analyze a site's sitemap.xml |
|
|
68
|
+
| `seo_check_robots` | Fetch and analyze a site's robots.txt |
|
|
69
|
+
| `seo_verify_assets` | Verify that SEO assets (og:image, favicon, canonical) are accessible |
|
|
70
|
+
| `seo_keyword_research` | Research keyword opportunities using Google Autocomplete |
|
|
71
|
+
| `seo_content_gap` | Find content gaps by comparing keyword research against existing pages |
|
|
72
|
+
|
|
73
|
+
## Resources
|
|
74
|
+
|
|
75
|
+
| Resource | URI | Description |
|
|
76
|
+
|----------|-----|-------------|
|
|
77
|
+
| `seo-rules` | `seo://rules` | All 15 validation rules with IDs, weights, and descriptions (100 points total) |
|
|
78
|
+
| `seo-config-example` | `seo://config-example` | Example `seo.config.ts` for configuring indxel in a Next.js project |
|
|
79
|
+
|
|
80
|
+
## Example usage
|
|
81
|
+
|
|
82
|
+
Once configured, ask your AI assistant:
|
|
83
|
+
|
|
84
|
+
- "Audit the SEO of https://example.com"
|
|
85
|
+
- "Crawl my site and find SEO issues"
|
|
86
|
+
- "Generate metadata for my pricing page"
|
|
87
|
+
- "Check if my sitemap is correct"
|
|
88
|
+
- "What keywords should I target for 'project management'?"
|
|
89
|
+
|
|
90
|
+
## License
|
|
91
|
+
|
|
92
|
+
MIT
|
package/dist/index.d.ts
ADDED