{
 "name": "shrivu-shankar",
 "version": "1.0.0",
 "description": "Read-only MCP server for Shrivu Shankar's site: search and fetch his blog posts (coding agents, LLM systems, MCP, AI security, AI transformation), browse his project portfolio, get his bio/socials, and the coffee-chat page. No authentication.",
 "serverUrl": "https://sshh.io/mcp",
 "transport": "streamable-http",
 "remotes": [
  {
   "type": "streamable-http",
   "url": "https://sshh.io/mcp"
  }
 ],
 "authentication": {
  "type": "none"
 },
 "tools": [
  {
   "name": "about_shrivu",
   "description": "Shrivu Shankar's bio, role, location, links, and socials."
  },
  {
   "name": "search_posts",
   "description": "Search blog posts (coding agents, LLM systems, MCP, AI security, AI transformation) by keyword; returns canonical blog.sshh.io URLs.",
   "inputSchema": {
    "type": "object",
    "properties": {
     "query": {
      "type": "string"
     },
     "limit": {
      "type": "integer"
     }
    },
    "required": [
     "query"
    ]
   }
  },
  {
   "name": "get_post",
   "description": "Full text of one blog post as markdown, by slug.",
   "inputSchema": {
    "type": "object",
    "properties": {
     "slug": {
      "type": "string"
     }
    },
    "required": [
     "slug"
    ]
   }
  },
  {
   "name": "latest_posts",
   "description": "Most recent blog posts with summaries.",
   "inputSchema": {
    "type": "object",
    "properties": {
     "limit": {
      "type": "integer"
     }
    }
   }
  },
  {
   "name": "search_projects",
   "description": "Search 100 software projects by keyword, language, or domain.",
   "inputSchema": {
    "type": "object",
    "properties": {
     "query": {
      "type": "string"
     },
     "limit": {
      "type": "integer"
     }
    },
    "required": [
     "query"
    ]
   }
  },
  {
   "name": "get_project",
   "description": "Full metadata for one project by title.",
   "inputSchema": {
    "type": "object",
    "properties": {
     "title": {
      "type": "string"
     }
    },
    "required": [
     "title"
    ]
   }
  },
  {
   "name": "get_coffee_chat_link",
   "description": "How to schedule a coffee chat (returns the /coffee-chat page; never books)."
  }
 ]
}