Skip to content

No account needed

Connect your AI to this site

This site runs a real MCP (Model Context Protocol) server at /api/mcp. Point Claude, Cursor, or any other MCP-speaking client at it and it can search everything published here, check build-log stats, and see current availability — no sign-in, no API key. Try it live in your browser first →

Clients connected

1 AI client has registered against this server so far.

What it can do (public tier, no auth)

  • search_content

    Semantic search over everything published here.

  • get_build_log_stats

    Measurable outcome stats for a build-log entry.

  • get_availability

    Current availability + contact email.

Claude Code

claude mcp add --transport http damienkedwardstech https://damienkedwards.tech/api/mcp

Claude Desktop

Settings → Connectors → Add custom connector — or edit claude_desktop_config.json directly:

{
  "mcpServers": {
    "damienkedwardstech": { "type": "http", "url": "https://damienkedwards.tech/api/mcp" }
  }
}

Claude web (claude.ai)

Customize → Connectors → Add custom connector → paste https://damienkedwards.tech/api/mcp → Add. claude.ai discovers this site's OAuth metadata automatically and registers itself — no header or token to copy.

Anything else (Cursor, Windsurf, a custom script)

Same URL works for any client that speaks MCP over Streamable HTTP. Quick sanity check with curl:

curl -s https://damienkedwards.tech/api/mcp \
  -H "content-type: application/json" -H "accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'