fix(qa): SEO API Bridge fixes, transport type corrections, README improvements

- Fix SEO API Bridge branding, meta keys, route namespaces, GET auth
- Create WordPress.org-compatible readme.txt
- Fix transport types across all docs (streamableHttp/http, not sse)
- Add WordPress Plugin Requirements section to README

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
airano
2026-02-18 19:42:32 +03:30
parent 809dc264af
commit 91979ee18d
9 changed files with 178 additions and 55 deletions

View File

@@ -12,7 +12,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
cp env.example .env # Copy and fill in credentials
pip install -e ".[dev]" # Install with dev deps
python server.py # Run (stdio) or:
python server.py --transport sse --port 8000 # Run (HTTP)
python server.py --transport streamable-http --port 8000 # Run (HTTP)
```
## Build & Development Commands
@@ -24,8 +24,8 @@ pip install -e ".[dev]"
# Run server (stdio transport for Claude Desktop)
python server.py
# Run server (SSE/HTTP transport for testing)
python server.py --transport sse --port 8000
# Run server (HTTP transport for testing)
python server.py --transport streamable-http --port 8000
# Run all tests
pytest