Smithery · Schema

Smithery MCP Server

A Model Context Protocol server in the Smithery registry

Artificial IntelligenceLarge Language ModelsMCPModel Context ProtocolAI AgentsDeveloper ToolsRegistrySkillsTool Discovery

Properties

Name Type Description
qualifiedName string Unique server identifier in namespace/server-name format
displayName string Human-readable display name for the server
description string Description of what the server does and its capabilities
iconUrl string URL to the server's icon image
isVerified boolean Whether the server has been verified by Smithery
useCount integer Number of times the server has been used/installed
namespace string The namespace (organization or user) that owns this server
tools array Tools exposed by this MCP server
connections array Available connection methods for this server
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

smithery-server-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.smithery.ai/schemas/server",
  "title": "Smithery MCP Server",
  "description": "A Model Context Protocol server in the Smithery registry",
  "type": "object",
  "required": ["qualifiedName", "displayName"],
  "properties": {
    "qualifiedName": {
      "type": "string",
      "description": "Unique server identifier in namespace/server-name format",
      "pattern": "^[a-z0-9-]+/[a-z0-9-]+$"
    },
    "displayName": {
      "type": "string",
      "description": "Human-readable display name for the server"
    },
    "description": {
      "type": "string",
      "description": "Description of what the server does and its capabilities"
    },
    "iconUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL to the server's icon image"
    },
    "isVerified": {
      "type": "boolean",
      "description": "Whether the server has been verified by Smithery"
    },
    "useCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of times the server has been used/installed"
    },
    "namespace": {
      "type": "string",
      "description": "The namespace (organization or user) that owns this server"
    },
    "tools": {
      "type": "array",
      "description": "Tools exposed by this MCP server",
      "items": {
        "$ref": "#/definitions/Tool"
      }
    },
    "connections": {
      "type": "array",
      "description": "Available connection methods for this server",
      "items": {
        "$ref": "#/definitions/Connection"
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  },
  "definitions": {
    "Tool": {
      "type": "object",
      "properties": {
        "name": {"type": "string"},
        "description": {"type": "string"},
        "inputSchema": {"type": "object"}
      }
    },
    "Connection": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": ["http", "stdio", "uplink"]
        },
        "url": {"type": "string", "format": "uri"},
        "configSchema": {"type": "object"}
      }
    }
  }
}