{
  "name": "loke-development",
  "displayName": "Loke Development",
  "description": "Read-only tools for searching published Loke.dev content and inspecting public page metadata.",
  "version": "1.0.0",
  "serverUrl": "https://loke.dev/api/mcp",
  "transport": "streamable-http",
  "authentication": {
    "required": false
  },
  "tools": [
    {
      "name": "search_published_content",
      "description": "Search published Loke.dev posts and projects. Drafts and private records are never returned.",
      "inputSchema": {
        "type": "object",
        "required": [
          "query"
        ],
        "properties": {
          "query": {
            "type": "string",
            "minLength": 2,
            "maxLength": 100,
            "description": "A search phrase."
          }
        },
        "additionalProperties": false
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": false
      }
    },
    {
      "name": "inspect_public_url",
      "description": "Inspect metadata on one public HTTP or HTTPS page. Private hosts and URLs with credentials are rejected.",
      "inputSchema": {
        "type": "object",
        "required": [
          "url"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "A complete public HTTP or HTTPS URL."
          }
        },
        "additionalProperties": false
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": true
      }
    }
  ],
  "documentationUrl": "https://loke.dev/developers"
}