eSeller World MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@eSeller World MCP ServerList the latest blog posts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
eSeller World MCP Server
A remote Model Context Protocol server that exposes the eSeller World backend REST API as read/write tools, so Claude can work directly with:
Site content (
/api/content)Schema fields (model definitions — via
schema_describe/schema://models)SEO metadata (
/api/seo)URL structures (
/api/redirects)Other content — blogs, case studies, portfolios, guides, categories, authors, contacts
It is a thin wrapper over the existing Express API in eSellerWorld-Backend-main — no backend changes required. Transport is Streamable HTTP (stateless), suitable for remote/hosted Claude clients.
⚠️ Security model (read this)
The backend API has no authentication of its own. This MCP server is therefore the security boundary:
Every request to
POST /mcpmust carryAuthorization: Bearer <MCP_AUTH_TOKEN>; anything else gets401.The server refuses to start if
MCP_AUTH_TOKENis unset.Write tools (
*_create,*_update,*_delete,content_update) mutate live production data and are annotated as destructive so the MCP host prompts before each call.
Note: the token protects this MCP entrypoint only. Anyone who knows the backend origin can still call it directly — consider adding auth to the backend too, and always deploy the MCP behind HTTPS.
Related MCP server: mcp-wordpress
Setup
cp .env.example .env # then edit values
npm install
npm run dev # tsx watch, or: npm run build && npm startEnvironment variables (.env):
Var | Meaning |
| Origin of the backend API, e.g. |
| Bearer secret clients must send ( |
| Port to listen on (default 8080) |
| Per-request backend timeout (default 15000) |
Endpoints
POST /mcp— the MCP JSON-RPC endpoint (bearer-protected).GET /healthz— unauthenticated liveness probe.
Connecting a Claude client
Remote MCP config:
{
"mcpServers": {
"esellerworld": {
"url": "https://<your-host>/mcp",
"headers": { "Authorization": "Bearer <MCP_AUTH_TOKEN>" }
}
}
}In Claude Code you can also add it from the CLI:
claude mcp add --transport http esellerworld https://<your-host>/mcp --header "Authorization: Bearer <MCP_AUTH_TOKEN>"Smoke test with curl
# initialize (should return serverInfo)
curl -s -X POST http://localhost:8080/mcp \
-H "Authorization: Bearer $MCP_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"curl","version":"0"}}}'
# without the token -> 401
curl -s -o /dev/null -w "%{http_code}\n" -X POST http://localhost:8080/mcp -d '{}'Deploy
Any Node host works (Render, Railway, Fly.io, a VPS behind Nginx). A Dockerfile is included:
docker build -t esellerworld-mcp .
docker run -p 8080:8080 --env-file .env esellerworld-mcpTerminate TLS at the platform/reverse proxy and point clients at https://<host>/mcp.
Tool catalogue
Content:
content_list,content_get,content_version,content_update,content_deleteSEO:
seo_list,seo_get_by_path,seo_get_by_id,seo_create,seo_update,seo_delete*Redirects:
redirects_list,redirect_get,redirect_check,redirect_create,redirect_update,redirect_toggle,redirect_delete,redirects_bulk_delete*Blogs:
blogs_list,blog_get_by_slug,blog_get_by_id,blog_create,blog_update,blog_delete*Categories / Authors:
categories_list,category_get,category_create…;authors_list,author_get,author_create…Case studies / Portfolios:
case_studies_list,case_study_get_by_slug/id, CRUD*;portfolios_list,portfolio_get, CRUD*Guides:
guide_collections_*,guide_faqs_*,guide_contents_*(list/get + CRUD*)Contacts (PII):
contacts_list,contact_get,contact_update_status*Schema:
schema_describe+ resourceschema://models
* = write tool (mutates live data).
This server cannot be deployed
Maintenance
Related MCP Connectors
Live SEO workflow tools for Claude Code, Codex, and AI agents.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
AI-callable tools for API mocking, testing, monitoring, security, and automation.
Read, edit, publish, and preview your pepita websites from Claude.
Related MCP Servers
- AlicenseBqualityAmaintenanceConnects BookStack knowledge bases to Claude through 47+ tools covering complete CRUD operations for books, pages, chapters, shelves, users, search, attachments, and permissions. Enables full management of BookStack content and configuration through natural language.56108 npm87MIT
- AlicenseCqualityBmaintenanceEnables Claude Code to read, edit, and manage WordPress pages, posts, shortcodes, and media via the WordPress REST API.8013 npm3MIT
- FlicenseNot gradedqualityDmaintenanceExposes a curated subset of the Officegest API v2 (22 CRUD tools) for managing clients, sales, and stock to AI clients like Claude Code and Claude Desktop.1-

KanexPro Product API MCPofficial
FlicenseNot gradedqualityDmaintenanceExposes KanexPro CMS API as tools for Claude, enabling product lookup, category listing, and content publishing.-