Query My Digital Card with AI: The Future of Human Connection #
Want to know what I’m working on? Need to schedule a meeting? Looking for book recommendations? Just ask your AI assistant.
My daemon is a queryable digital card that your AI can read using natural language. No forms, no manual searching—your AI talks to my daemon automatically.
My daemon API is intentionally public and accessible. I want your AI to query it. I want to be found by people who would benefit from connecting with me.
⚡ Quick Start (3 Steps) #
Step 1: Add to Claude Desktop #
Open your Claude Desktop config file:
- Mac:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add this server (no API key required):
{
"mcpServers": {
"chris-daemon": {
"url": "https://mcp-daemon.chriswenk.workers.dev"
}
}
}
Restart Claude Desktop. You’ll see a 🔌 icon indicating the server is connected.
Step 2: Add to Claude Code (CLI) #
For Claude Code 2.0.69+, run this one command:
claude mcp add --transport http chris-daemon https://mcp-daemon.chriswenk.workers.dev
Then verify it’s connected:
/mcp
Select chris-daemon and ensure it’s enabled.
Step 3: Start Asking Questions #
Open Claude Code and try:
Query chris-daemon to learn about Chris Wenk
What projects is Chris working on? Query chris-daemon
Query chris-daemon for book recommendations about financial independence
That’s it. Your AI handles everything else.
💬 What You Can Ask #
Ask your AI assistant in plain English:
✅ “What is Chris working on?”
- Queries my projects automatically
✅ “Find a good time to meet with Chris”
- Checks my location (Dubai) and daily routine
✅ “What books does Chris recommend?”
- Gets my reading list
✅ “Is Chris interested in Python automation?”
- Checks my mission, projects, and preferences for compatibility
✅ “Show me Chris’s predictions about AI”
- Retrieves my future forecasts
No coding required. Your AI translates your questions into API calls automatically.
📡 All 12 Available MCP Tools #
| Tool | What It Returns | Ask This |
|---|---|---|
about |
My background and bio | “Tell me about Chris” |
narrative |
My professional journey | “What’s Chris’s story?” |
mission |
My mission statement | “What’s Chris’s mission?” |
projects |
Current projects | “What is Chris working on?” |
telos |
My ultimate goals | “What are Chris’s long-term goals?” |
current_location |
Where I am (Dubai) | “Where is Chris located?” |
daily_routine |
My daily schedule | “What’s Chris’s daily routine?” |
preferences |
Work style & values | “How does Chris prefer to work?” |
favorite_books |
Book recommendations | “What books does Chris recommend?” |
favorite_movies |
Movie recommendations | “What movies does Chris like?” |
favorite_podcasts |
Podcast recommendations | “What podcasts does Chris listen to?” |
predictions |
Future forecasts | “What are Chris’s predictions about AI?” |
Your AI automatically picks the right tool based on your question.
🔧 For Developers: Direct API Access #
Want to build your own tools? Use the API directly (no authentication required).
List Available Tools #
curl -X POST https://mcp-daemon.chriswenk.workers.dev/ \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/list",
"id": 1
}'
Query Specific Tool #
curl -X POST https://mcp-daemon.chriswenk.workers.dev/ \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {"name": "mission"},
"id": 2
}'
Python Example #
import requests
def query_chris_daemon(tool_name: str) -> str:
"""Query Chris's daemon for information."""
url = "https://mcp-daemon.chriswenk.workers.dev/"
payload = {
"jsonrpc": "2.0",
"method": "tools/call",
"params": {"name": tool_name},
"id": 1
}
headers = {
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
return response.json()["result"]["content"][0]["text"]
# Usage
mission = query_chris_daemon("mission")
print(mission)
projects = query_chris_daemon("projects")
print(projects)
books = query_chris_daemon("favorite_books")
print(books)
🎯 Common Use Cases #
1. Check Collaboration Fit #
You: “I’m building a Python tool for portfolio tracking. Query chris-daemon to see if Chris would be interested.”
AI: Queries mission, projects, preferences → Analyzes compatibility → Gives you a score and recommendation
2. Schedule a Meeting #
You: “I’m in San Francisco. Query chris-daemon and find a good time for a 30-minute call.”
AI: Queries current_location + daily_routine → Calculates timezone difference → Suggests 3 optimal meeting times
3. Get Personalized Recommendations #
You: “Query chris-daemon for book recommendations about financial independence.”
AI: Queries favorite_books → Filters by topic → Returns relevant titles with explanations
4. Understand My Journey #
You: “Query chris-daemon for Chris’s narrative. I want to understand how he achieved financial independence.”
AI: Queries narrative + about → Summarizes the journey from South Africa to Dubai to Financial Independence
🌐 Technical Details #
Base URL: https://mcp-daemon.chriswenk.workers.dev
Protocol: MCP (Model Context Protocol) 2024-11-05 - JSON-RPC 2.0 over HTTP
Transport: HTTP (recommended for Claude Code 2.0.69+)
Authentication: None required (public access) Response Time: < 200ms average Availability: 99.9% uptime (Cloudflare Workers global network) Infrastructure: Two-tier architecture with service binding Rate Limit: Standard Cloudflare limits (designed for public use)
Architecture #
Client (Your AI Assistant)
↓
Frontend MCP Server (Public - No Auth)
↓
↓ Service Binding (Internal)
↓ INTERNAL_AUTH_TOKEN
↓
Backend Worker (Private)
↓
daemon.md (Data Source)
Security:
- Frontend is completely public (no authentication required)
- Backend is completely private (only accessible via service binding)
- Internal authentication token protects service-to-service communication
- All data is intentionally public by design
❓ FAQ #
Q: Do I need an API key? A: No! This server is completely public. No authentication required.
Q: Can I use this for my app? A: Yes! Build tools, integrations, discovery platforms—whatever helps people connect. It’s free and open.
Q: What if I need private information? A: Contact me directly at chriswenk@me.com
Q: Can I build my own daemon? A: Absolutely! The source code architecture uses Cloudflare Workers with MCP protocol. Contact me for implementation guidance.
Q: Does this work with Claude Code 2.0.69+?
A: Yes! Just run: claude mcp add --transport http chris-daemon https://mcp-daemon.chriswenk.workers.dev
Q: Does this work with Claude Desktop?
A: Yes! Add {"url": "https://mcp-daemon.chriswenk.workers.dev"} to your claude_desktop_config.json
🚀 Get Started Now #
Option 1: Use Claude Code (Recommended)
claude mcp add --transport http chris-daemon https://mcp-daemon.chriswenk.workers.dev
Then in Claude Code:
- Run
/mcpto verify the server is connected - Ask: “What is Chris Wenk working on?”
- Claude will automatically query the MCP server
Troubleshooting:
- If connection fails, try:
claude mcp remove chris-daemonthen re-add - Run
/doctorto check for configuration issues - View detailed logs:
claude --debug
Option 2: Use Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"chris-daemon": {
"url": "https://mcp-daemon.chriswenk.workers.dev"
}
}
}
Restart Claude Desktop and look for the 🔌 icon.
Option 3: Build Your Own Tool
- Use the curl or Python examples from the “For Developers” section above
- Customize for your use case
- Integrate into your workflow - it’s completely free!
📬 Contact #
Questions? Leave a commnent and I’ll reply
API: https://mcp-daemon.chriswenk.workers.dev
The future of networking is AI-mediated discovery. My daemon is public and queryable. Use it. Build with it. Help enable the future.