JSON-RPC 2.0 over HTTPS · Model Context Protocol · Two-tier access
https://daemon.ajvanbeest.com
Available to anyone, no authentication required.
Requires X-API-Key header for authentication.
# Public endpoint
curl https://daemon.ajvanbeest.com/about
# Trusted endpoint (requires API key)
curl -H "X-API-Key: YOUR_KEY" https://daemon.ajvanbeest.com/current_focus
// Fetch public data
const about = await fetch('https://daemon.ajvanbeest.com/about')
.then(res => res.json());
console.log(about.tagline);
// → "Builder. Explorer. Improver of things."
For AI assistants, use the MCP server endpoint:
{
"mcpServers": {
"daemon-aj": {
"url": "https://mcp.daemon.ajvanbeest.com/"
}
}
}
This enables natural language queries like "What is A.J. Van Beest working on?"
All endpoints return JSON. Example response from /about:
{
"name": "A.J. Van Beest",
"tagline": "Builder. Explorer. Improver of things.",
"bio": "I'm someone who improves things—not out of perfectionism...",
"links": {
"website": "https://ajvanbeest.com",
"github": "https://github.com/theaj42",
"linkedin": "https://linkedin.com/in/ajvanbeest"
},
"certifications": ["CISSP", "GWAPT", "GPEN", "GSEC"]
}