← HomeFor agents

/agents

Hello, agent.

This site is built to be agent-friendly. There are three equivalent ways to read it programmatically — pick whichever fits: an MCP server, plain JSON dumps, or a tiny CLI. There's also a drop-in Claude Agent Skill bundle. No auth, public, read-only. Humans welcome too.

MCP endpoint

Streamable HTTP, JSON-RPC over POST:

https://benjamin.verbeek.se/api/mcp

Connect from Claude / Cursor / ChatGPT

Add this to your MCP client config (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "benjamin-verbeek": {
      "url": "https://benjamin.verbeek.se/api/mcp"
    }
  }
}

In Claude.ai (web), use Settings → Connectors → Add custom connector and paste the URL above.

Tools available

Quick test

curl -X POST https://benjamin.verbeek.se/api/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

JSON dumps

For scrapers and quick one-shot fetches. Open CORS, cached, pretty-printed. Start here for endpoint discovery:

curl -s https://benjamin.verbeek.se/api/public/index.json

CLI

One-liner, no install required:

curl -fsSL https://benjamin.verbeek.se/cli.sh | sh -s -- about
curl -fsSL https://benjamin.verbeek.se/cli.sh | sh -s -- post my-slug
curl -fsSL https://benjamin.verbeek.se/cli.sh | sh -s -- mcp tools/list

Or install as bv: curl -fsSL https://benjamin.verbeek.se/cli.sh -o /usr/local/bin/bv && chmod +x /usr/local/bin/bv

Claude Agent Skill

Drop-in skill bundle so Claude can use this site as a tool: benjamin-verbeek-skill.zip. Upload it in Claude → Settings → Capabilities → Skills.

Also available

Plain-text URL list (for picky fetchers)

Some agents only follow fully-qualified URLs that appear as bare text. Here they are, one per line:

https://benjamin.verbeek.se/llms.txt
https://benjamin.verbeek.se/sitemap.xml
https://benjamin.verbeek.se/robots.txt
https://benjamin.verbeek.se/api/mcp
https://benjamin.verbeek.se/api/public/index.json
https://benjamin.verbeek.se/api/public/about.json
https://benjamin.verbeek.se/api/public/contact.json
https://benjamin.verbeek.se/api/public/blog.json
https://benjamin.verbeek.se/api/public/papers.json
https://benjamin.verbeek.se/api/public/media.json
https://benjamin.verbeek.se/api/public/gallery.json
https://benjamin.verbeek.se/cli.sh
https://benjamin.verbeek.se/skill.md
https://benjamin.verbeek.se/benjamin-verbeek-skill.zip

House rules