{"name":"moe-blog","description":"Moe's terminal blog - access posts, search content, and learn about the author","version":"1.0.0","author":"Moe","skills":[{"name":"moe-blog-posts","description":"Fetch Moe's blog posts - his writing on startups, infrastructure, and product","endpoint":"/api/posts","method":"GET","parameters":{"limit":{"type":"number","description":"Number of posts to return (default: 10)","required":false},"offset":{"type":"number","description":"Offset for pagination (default: 0)","required":false},"tag":{"type":"string","description":"Filter by tag","required":false},"q":{"type":"string","description":"Search query","required":false}},"response":{"type":"object","properties":{"posts":"Array of post objects with slug, title, excerpt, tags","meta":"Pagination metadata and available tags"}}},{"name":"moe-blog-search","description":"Search Moe's writing for specific topics","endpoint":"/api/posts","method":"GET","parameters":{"q":{"type":"string","description":"Search query to find in title, content, or tags","required":true}}},{"name":"moe-blog-post","description":"Get a specific post as raw Markdown","endpoint":"/posts/{slug}.md","method":"GET","parameters":{"slug":{"type":"string","description":"The post slug (from posts list)","required":true,"in":"path"}},"response":{"type":"text/markdown","description":"Full post content with YAML frontmatter"}},{"name":"moe-about","description":"Get information about Moe - founder, CEO, background, and current focus","endpoint":"/api/about","method":"GET","response":{"type":"object","properties":{"name":"Author name","role":"Current role","company":"Company info","background":"Professional background","beliefs":"Core beliefs about building software","social":"Social media links"}}}],"_links":{"posts":"/api/posts","about":"/api/about","robots":"/robots.txt"}}