https://github.com/davidmosiah/agent-seo-engine
Agent-first local SEO scoring, search-intent and opportunity engine with CLI and optional MCP server.
https://github.com/davidmosiah/agent-seo-engine
agent-tools agentic-workflows ai-agents claude cli codex content-ops dry-run local-first markdown mcp mcp-server pypi python search-intent seo seo-tools
Last synced: 6 days ago
JSON representation
Agent-first local SEO scoring, search-intent and opportunity engine with CLI and optional MCP server.
- Host: GitHub
- URL: https://github.com/davidmosiah/agent-seo-engine
- Owner: davidmosiah
- License: mit
- Created: 2026-05-05T11:54:14.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-23T18:09:21.000Z (about 1 month ago)
- Last Synced: 2026-05-23T20:10:28.618Z (about 1 month ago)
- Topics: agent-tools, agentic-workflows, ai-agents, claude, cli, codex, content-ops, dry-run, local-first, markdown, mcp, mcp-server, pypi, python, search-intent, seo, seo-tools
- Language: Python
- Homepage: https://github.com/davidmosiah/agent-seo-engine
- Size: 99.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
Agent SEO Engine
Local-first SEO scoring, search-intent and opportunity engine for AI agents.
Deterministic checks before agents rewrite, refresh or publish content.
> ⭐ **If this agent-first tool helps your workflow, please star the repo.** Stars make this tooling easier for other builders to discover and help Delx keep shipping open infrastructure.
> 🧱 Part of the [Delx agent stack](https://github.com/davidmosiah) — 15 open-source MCP servers across **body, reach and coordination**.
---
Agent-first SEO scoring, search-intent detection and opportunity prioritization. It packages the useful parts of a production content pipeline into a clean local CLI plus an optional MCP server for Codex, Claude, Cursor, Hermes, OpenClaw and other agent runtimes.
Use it when an agent needs deterministic SEO checks before rewriting, refreshing or publishing content.
## What It Does
- Classifies search intent: informational, navigational, transactional and commercial investigation
- Scores markdown articles for agent-readable SEO gaps
- Prioritizes GSC-style opportunities by impressions, position, CTR gap, conversions and commercial value
- Exposes `manifest`, `connection_status` and `privacy_audit` surfaces before content tools
- Runs locally by default with no required API keys
## Install
```bash
pipx install agent-seo-engine
```
With MCP support:
```bash
pipx install "agent-seo-engine[mcp]"
```
Published on PyPI: [`agent-seo-engine`](https://pypi.org/project/agent-seo-engine/). Release automation uses PyPI Trusted Publishing, so GitHub Actions can publish future versions without long-lived PyPI tokens. See [docs/pypi-publishing.md](docs/pypi-publishing.md).
## CLI
```bash
agent-seo-engine manifest --client codex
agent-seo-engine doctor
agent-seo-engine privacy-audit
agent-seo-engine intent "best ai agent framework"
agent-seo-engine score --file examples/article.md --primary-keyword "ai agent testing"
agent-seo-engine opportunity --impressions 4200 --clicks 80 --position 12.4 --commercial-intent 0.8
agent-seo-engine image-alt --file page.html
```
All commands return structured JSON by default. Use `--format markdown` for human review.
## MCP
```bash
agent-seo-mcp
```
Hermes-style config:
```yaml
mcp_servers:
agent_seo:
command: agent-seo-mcp
args: []
sampling:
enabled: false
```
Recommended first calls:
1. `agent_seo_connection_status`
2. `agent_seo_privacy_audit`
3. `agent_seo_score_content`
## Agent Surfaces
| Tool | Purpose |
|---|---|
| `agent_seo_manifest` | Install/runtime guidance for agent clients |
| `agent_seo_connection_status` | Local/offline readiness and optional integration status |
| `agent_seo_privacy_audit` | Draft, analytics and credential boundaries |
| `agent_seo_detect_intent` | Search intent classification |
| `agent_seo_score_content` | Markdown quality checks with exact recommendations |
| `agent_seo_prioritize_opportunity` | GSC-style opportunity scoring |
| `agent_seo_check_image_alt` | Image `alt`-attribute coverage audit for HTML |
## Copy-Paste Agent Prompt
```text
Use agent-seo-engine. First call agent_seo_connection_status and agent_seo_privacy_audit.
Score the draft, then propose only edits tied to failed checks or high-impact opportunities.
```
## Agent Contract
Agents should not guess whether a draft is ready. They should call the scoring tool, read exact failed checks, then propose focused edits. The engine is intentionally deterministic and local so repeated agent runs can compare output over time.
## Development
```bash
python3 -m venv .venv
. .venv/bin/activate
pip install -e ".[dev]"
pytest
python -m compileall -q src
```
---
## 📧 Contact & Support
- 📨 **support@delx.ai** — general questions, integration help, partnerships
- 🐛 **Bug reports / feature requests** — [GitHub Issues](https://github.com/davidmosiah/agent-seo-engine/issues)
- 🐦 **Updates** — [@delx369](https://x.com/delx369) on X
- 🌐 **Site** — [wellness.delx.ai](https://wellness.delx.ai)