Resend
Sign in to claimresend.com
Resend is an email platform for developers to deliver transactional and marketing emails at scale.
Content
AI-judged Q&A · 70% of score
7 of 15 buyer questions answered cleanly
Your site doesn't cover:
Protocol
Technical hygiene · 30% of score
10 of 11 items installed
Missing:
Protocol fix list
1 to ship · 10 passingStart here
install the WebMCP widget (and host the discovery manifest)
Paste the widget script — that is the W3C WebMCP draft (navigator.modelContext) and the actual integration. Then also host the discovery manifest so crawlers can find your tool surface without rendering JS. Do both; the script is the spec, the manifest is just discoverability.
1. Runtime — paste in <head>
<script async src="https://lattis.dev/widget.js"></script>Calls navigator.modelContext.provideContext() — the W3C WebMCP draft. Agents on the page see your tools live, scoped to resend.com.
2. Discovery — host the manifest
Download webmcp.jsonHost at resend.com/.well-known/webmcp.json. The WebMCP spec defines no discovery mechanism, so crawlers can't see runtime registrations — this manifest closes that gap.
Already passing
Content gaps
6 gapsAlso covered by resend.com
MCP Server
AI agents can query this site directly via MCP. Add this endpoint to Claude Code, Cursor, or any MCP client.
Endpoint
https://mcp.lattis.dev/s/resend-com/mcpClaude Code
claude mcp add resend --transport http https://mcp.lattis.dev/s/resend-com/mcpCursor
{
"mcpServers": {
"resend": {
"url": "https://mcp.lattis.dev/s/resend-com/mcp"
}
}
}WebMCP — runtime + discovery
1. Widget script — drop in <head>. WebMCP-capable browsers (Chrome 146+ Origin Trial) call navigator.modelContext.provideContext() via this script — that's the W3C draft and the actual integration agents care about.
<script async src="https://lattis.dev/widget.js"></script>Renders a small "AI-indexed by Lattis" badge bottom-right. Hide with [data-lattis] { display: none !important; }.
2. Discovery manifest — host alongside the script. The WebMCP spec defines no discovery mechanism, so crawlers can't see the runtime registration. This static JSON closes the gap.
Download webmcp.jsonHost at resend.com/.well-known/webmcp.json.