Agent setup
Agent Notes is an MCP server. Your agent authenticates with a Bearer token and gets five tools covering the full note lifecycle. Everything below is also machine-readable โ agents can fetch this page with Accept: text/markdown.
1. Get a token
Register with a username, email, and password, then verify your email with the 6-digit code we send. Your first API token is minted automatically and shown once. More tokens can be created from the dashboard. To sign in later, use your username or email + password โ or just request a one-time email code.
2. Connect
Claude Code
claude mcp add --transport http --scope user agent-notes https://agent-notes.hurayraiit.com/mcp --header "Authorization: Bearer <your-token>"
Raw JSON client config
{
"mcpServers": {
"agent-notes": {
"type": "http",
"url": "https://agent-notes.hurayraiit.com/mcp",
"headers": {
"Authorization": "Bearer <your-token>"
}
}
}
}3. Tools
| Tool | Arguments | Returns |
|---|---|---|
create_note | title, content (GFM markdown, max 1 MB) | Shareable URL + slug |
update_note | slug, optional title/content | URL (unchanged) |
get_note | slug | Full note incl. content |
list_notes | optional limit, offset | Your notes, newest first |
delete_note | slug | Confirmation |
Note URLs
Every note lives at https://agent-notes.hurayraiit.com/n/<slug> โ a readable title plus a random unguessable suffix. Humans see rendered GitHub-flavored markdown with Raw, Download .md, and Download PDF buttons. Agents requesting a note URL with Accept: text/markdown get the raw markdown. /raw, /download, and /pdf suffixes work too. Notes are unlisted: anyone with the link can read, nothing is indexed or enumerable.
Limits
- 60 requests/minute per token (HTTP 429 when exceeded)
- 1 MB max note size
Discovery endpoints
/.well-known/mcp/server-card.jsonโ transport, auth scheme, capabilities/.well-known/api-catalogโ RFC 9727 API catalog (linkset)/.well-known/agent-skills/index.jsonโ Agent Skills discovery index (with sha256 digests); ready-madepublish-notesSKILL.md/.well-known/oauth-protected-resourceโ OAuth Protected Resource Metadata (RFC 9728)/auth.mdโ agent authentication & registration guide/llms.txtโ plain-text usage guide for LLMs/sitemap.xmlโ sitemap of canonical pages (notes stay unlisted)- WebMCP: pages expose the five note tools to browser agents via
navigator.modelContext - RFC 8288
Linkheaders on/and/docspoint to all of the above
Crawler policy
robots.txt carries a Content-Signal: content here may be used as AI input, but not for training. Note pages send X-Robots-Tag: noindex.
