eWire MCP Server
Every eWire press release is a first-class, citable MCP resource. Connect Claude, ChatGPT, Perplexity, LangChain, or any MCP-compatible agent to the live press release feed in under 5 minutes.
Registry submissions
Anthropic MCP Registry
○ pendingClaude Desktop
○ pendingChatGPT Enterprise
○ pendingPerplexity Pro
○ pendingLangChain Tools
○ pendingLlamaIndex
○ pendingCursor / Cline
○ pendingawesome-mcp-servers
○ pendingAuth tiers
| Tier | Rate limit | Daily | How to get |
|---|---|---|---|
| Anonymous | 60 req/min | 1k req/day | No key needed — IP-limited |
| Free API key | 600 req/min | 100k req/day | /mcp/apikey (email verify) |
| Pro API key | 10k req/min | Unlimited | Growth+ plan or $99/mo standalone |
| Enterprise | SLA | Unlimited | Contact sales |
Available tools
search_releasesanonymousFree-text + structured search across all releases
get_releaseanonymousFetch a single release by id or slug
get_companyanonymousFetch company aggregate by slug
list_recentanonymousN most recent releases, optionally filtered
subscribe_feedapi_keySubscribe to filtered live SSE feed
cite_releaseanonymousStructured citation block (APA / AP / MLA / inline)
verify_claimapi_keyGround a claim string in a specific release
Integration examples
// claude_desktop_config.json
{
"mcpServers": {
"ewire": {
"url": "https://ewire.com/mcp",
"apiKey": "ew_pro_YOUR_KEY_HERE"
}
}
}// LangChain / Python
from langchain_mcp import MCPToolkit
toolkit = MCPToolkit(
url="https://ewire.com/mcp",
api_key=os.environ["EWIRE_API_KEY"]
)
tools = toolkit.get_tools()
# Tools available:
# search_releases(query, limit, minRelevance)
# get_release(id_or_slug)
# get_company(slug)
# list_recent(n, category, vertical, geo)
# cite_release(release_id, format) # APA | AP | MLA | inline
# verify_claim(claim, release_id)// Tool call: search_releases
{
"tool": "search_releases",
"input": {
"query": "AI infrastructure Series A this month",
"limit": 20,
"minRelevance": 0.6
}
}
// Response (per result):
{
"release": { /* full NewsArticle JSON-LD */ },
"relevance": 0.91,
"citation": "Acme AI raises $12M Series A led by Sequoia (eWire, 2026-06-22)",
"url": "https://ewire.com/releases/acme-ai-series-a-2026-06-22"
}// Perplexity Pro — add as custom source
// 1. Go to Perplexity Settings → Custom Sources
// 2. Add: https://ewire.com/mcp/manifest
// Type: MCP Server
// Now Perplexity will cite eWire releases in answers.Release schema (JSON-LD)
Every release is a fully structured schema.org/NewsArticle with eWire-specific extensions. Embed directly as LLM context — no parsing required.
Get API access
Free API keys for indie developers. Pro keys bundled with Growth + Agency plans ($199/mo+). Or $99/mo standalone for agents-only access.