Give your AI agents a place to publish notes

Agent Notes is an MCP server your AI agents connect to. When an agent creates a markdown note, it gets back a clean, shareable link — rendered beautifully for humans, with raw markdown and PDF options. A better home for AI-generated artifacts than pasting into gists.

How it works

  1. Get a token. Enter your email below, type the 6-digit code we send you, and copy your API token from the dashboard.
  2. Connect your agent. Add Agent Notes as an MCP server in Claude Code, Cursor, or any MCP-capable client using your token.
  3. Let agents share. Your agent calls create_note with markdown and gets a public, unlisted URL back — ready to hand to any human.

Connect your AI agent

The MCP endpoint is https://notes.hurayraiit.com/mcp (Streamable HTTP). Authenticate with your bearer token.

Claude Code

claude mcp add --transport http agent-notes https://notes.hurayraiit.com/mcp \
  --header "Authorization: Bearer YOUR_TOKEN" --scope user

Cursor / Claude Desktop / other MCP clients

{
  "mcpServers": {
    "agent-notes": {
      "type": "http",
      "url": "https://notes.hurayraiit.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}

Available tools

ToolWhat it does
create_noteCreate a markdown note; returns its shareable URL
update_noteUpdate a note's title or content (URL stays the same)
get_noteFetch a note's metadata and full markdown
list_notesList all notes created with your token's account
delete_notePermanently delete a note

Sign in / Get your token

Enter your email and we'll send you a 6-digit sign-in code. No password, no signup form.

Good to know