{
  "mcpServers": {
    "sigildex": {
      "url": "https://sigildex.ai/mcp",
      "transport": "streamable-http",
      "name": "Sigildex",
      "description": "Agent skill discovery — search 78K+ SKILL.md files ranked by relevance and trust",
      "version": "0.1.0",
      "tools": [
        {
          "name": "discover_skills",
          "description": "Search for agent skills matching a natural language query",
          "inputSchema": {
            "type": "object",
            "properties": {
              "query": { "type": "string", "description": "Natural language search query" },
              "limit": { "type": "number", "description": "Max results (1-30, default 10)" },
              "source": { "type": "string", "enum": ["all", "github", "clawhub"], "description": "Filter by source" }
            },
            "required": ["query"]
          }
        },
        {
          "name": "inspect_skill",
          "description": "Get full SKILL.md content and details for a specific skill",
          "inputSchema": {
            "type": "object",
            "properties": {
              "skill_id": { "type": "string", "description": "Skill UUID from discover results" },
              "query_id": { "type": "string", "description": "Query ID from discover (free inspect if valid)" }
            },
            "required": ["skill_id"]
          }
        }
      ]
    }
  }
}
