EraseText MCP Server
Provides access to EraseText's AI text removal for images, enabling erasing text from photos and retrieving account details.
README
EraseText API
Official docs, OpenAPI spec, Python SDK, and agent tools for EraseText — a specialised AI text remover for photos and graphics. It erases lettering and the glow, stroke, and shadow that came with it, then rebuilds the plate underneath.
This repository is the public developer surface. The product itself lives at erasetext.com. Canonical HTTP docs: erasetext.com/docs/api.
Try it
- Editor (free to erase; full-res download uses credits): erasetext.com/upload
- HTTP API:
https://api.erasetext.com/v1 - MCP:
https://api.erasetext.com/mcp - First API key includes a 50-credit trial, no card.
Create a key under Account → Developer.
curl -X POST \
-H "X-Api-Key: et_…" \
-F "image_file=@photo.jpg" \
"https://api.erasetext.com/v1/erase" \
-o out.webp
Omit the mask to detect and erase all text. White pixels (channel >127) in a mask mark what to erase.
Python SDK
pip install erasetext
# optional agent extras
pip install 'erasetext[langchain]'
pip install 'erasetext[llamaindex]'
from erasetext import EraseText
client = EraseText() # reads ERASETEXT_API_KEY
image = client.erase(image_path="photo.jpg")
Path("out.webp").write_bytes(image)
erase() spends 1 credit on success. Failures and account() are free.
Do not send size or engine — both are retired and return 400.
MCP
Remote Streamable HTTP. Same key, same billing as the HTTP API.
{
"mcpServers": {
"erasetext": {
"url": "https://api.erasetext.com/mcp",
"headers": { "X-Api-Key": "et_…" }
}
}
}
Tools: erase_text (1 credit on success), get_account (free).
- Manifest: https://api.erasetext.com/.well-known/mcp.json
- Docs: https://erasetext.com/docs/api/#mcp
- Registry file in this repo:
server.json
LangChain
from erasetext.langchain import EraseTextToolkit
tools = EraseTextToolkit().get_tools()
# tools: erase_text, get_erasetext_account
Requires pip install 'erasetext[langchain]'.
LlamaIndex
from erasetext.llamaindex import EraseTextToolSpec
tools = EraseTextToolSpec().to_tool_list()
Requires pip install 'erasetext[llamaindex]'.
Specs
| File | What |
|---|---|
openapi.json |
HTTP OpenAPI 3.1 |
server.json |
MCP Registry record (remote Streamable HTTP) |
| https://erasetext.com/llms.txt | Machine-readable product + API summary |
| https://erasetext.com/openapi.json | Same spec, hosted next to the product |
Links
- Product: https://erasetext.com
- API docs: https://erasetext.com/docs/api/
- Developers / prepaid credits: https://erasetext.com/g/developers/
- Help: https://erasetext.com/help/
- Terms: https://erasetext.com/legal/terms/
Operated by Morling, LLC. The SDK and specs in this repository are MIT; the hosted erase service is a commercial product.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.