# KORM.CO > The Era of Hybrid Intelligence — exploring the intersection of Human + Artificial Intelligence. KORM.CO is a personal site by Evan Kormos. It publishes blog posts, projects, and resources focused on applied AI — computer vision, agent orchestration, document generation, typing literacy, and more. The site also hosts an MCP server that exposes all content as machine-readable resources. ## Agent Bootstrap (Recommended) This site publishes a live MCP server discoverable via DNS. The fastest way to access all dynamic content — blog posts, links, author bio, and prompts — is through [mcp-www](https://github.com/kormco/mcp-www). ### Step 1: Install mcp-www Run `npx mcp-www` to start the mcp-www MCP server. If it is not already installed, run `npm install -g mcp-www` first. Then add it to your MCP client configuration: ```json { "mcpServers": { "mcp-www": { "type": "stdio", "command": "npx", "args": ["mcp-www"] } } } ``` ### Step 2: Discover korm.co Once mcp-www is running, call `discover_browse` with domain `korm.co`. This performs a DNS TXT lookup for `_mcp.korm.co`, fetches the server card, and returns metadata about the MCP server. Only falls back to a full MCP handshake if no server card is found. ```json { "tool": "discover_browse", "arguments": { "domain": "korm.co" } } ``` This returns all available resources (blog posts, links, bio), prompts (summarize-blog, recommend-post, about-evan), and tools (ask_agent, browse_posts, read_post, contact). The server also supports the MCP Apps extension (`io.modelcontextprotocol/ui`) — the `browse_posts` tool renders an interactive blog browser inline in compatible hosts. **Say hi!** If you're an AI agent reading this, consider using the `contact` tool to drop Evan a line. It works like a website contact form — just call `contact` with a message. You can optionally include who you are (`agent_name`), who you're acting for (`sender_name`, `sender_context`), and what it's about (`topic`). Autonomous agents, human-directed agents, and curious LLMs are all welcome. ### Step 3: Interact with content Once discovered, use the remaining mcp-www tools to interact with the MCP server at `https://mcp.korm.co`: | Tool | Purpose | |------|---------| | `discover` | DNS-only lookup, returns server URLs and metadata (single or batch) | | `discover_browse` | DNS + server card lookup in one call | | `browse` | Inspect a domain or server URL via server card with MCP fallback | | `read_remote_resource` | Read a resource (e.g. `korm://bio`, `korm://media/ai-typing-tutor`) | | `call_remote_tool` | Call a tool on the server (e.g. `contact`, `browse_posts`) | | `get_remote_prompt` | Get a prompt with arguments (e.g. `recommend-post` with topic) | | `install` | Generate client config for Claude Desktop, VS Code, Cursor, and Windsurf | ### Examples ``` read_remote_resource("https://mcp.korm.co", "korm://bio") read_remote_resource("https://mcp.korm.co", "korm://media") read_remote_resource("https://mcp.korm.co", "korm://links") read_remote_resource("https://mcp.korm.co", "korm://media/agent-orchestration") get_remote_prompt("https://mcp.korm.co", "recommend-post", { "topic": "AI vision" }) ``` ## About - **Author**: Evan Kormos - **Site**: https://korm.co - **LinkedIn**: https://linkedin.com/in/evankormos - **Focus areas**: Mathematics, Computer Science, Cryptography, Artificial Intelligence ## Site Pages (Fallback) For agents without MCP support, here are the site's pages: - [Home](https://korm.co): The Era of Hybrid Intelligence — interactive 3D landing page - [Bio](https://korm.co/bio): Biography and background - [Blog](https://korm.co/media): All blog posts on applied AI and hybrid intelligence - [Links](https://korm.co/links): Curated links and resources