{
  "name": "DASHR MCP Server — 🇨🇿 Czech Republic",
  "version": "1.5.0",
  "country": "CZ",
  "country_name": "Czech Republic",
  "description": "Public read-only MCP server for the Czech social media & business intelligence database. TikTok metrics — followers, engagement, views, posts.",
  "protocol": "MCP Streamable HTTP (JSON-RPC 2.0 over HTTP POST)",
  "endpoint": "https://dashr.live/mcp-cz",
  "discovery": "https://dashr.live/.well-known/mcp.json",
  "all_endpoints": {
    "GR": "https://dashr.live/mcp",
    "CZ": "https://dashr.live/mcp-cz",
    "AT": "https://dashr.live/mcp-at",
    "UK": "https://dashr.live/mcp-uk"
  },
  "usage": {
    "method": "POST",
    "content_type": "application/json",
    "accept": "application/json, text/event-stream",
    "authentication": "None required (public, read-only)",
    "example_init": {
      "jsonrpc": "2.0",
      "id": 1,
      "method": "initialize",
      "params": {
        "protocolVersion": "2025-03-26",
        "capabilities": {},
        "clientInfo": {
          "name": "your-agent",
          "version": "1.0"
        }
      }
    }
  },
  "tools": [
    {
      "name": "search_creators",
      "description": "Search Czech TikTok creators by keyword (matches username, display name, bio, category)",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "minLength": 2,
            "description": "Search keyword"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 20,
            "description": "Max results"
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "get_creator",
      "description": "Get detailed profile for a single Czech TikTok creator by username",
      "inputSchema": {
        "type": "object",
        "properties": {
          "username": {
            "type": "string",
            "minLength": 1,
            "description": "TikTok username (without @ prefix)"
          }
        },
        "required": [
          "username"
        ]
      }
    },
    {
      "name": "list_creators",
      "description": "List and filter Czech TikTok creators by category, tier, engagement, followers, with sorting",
      "inputSchema": {
        "type": "object",
        "properties": {
          "sort": {
            "type": "string",
            "enum": [
              "followers",
              "engagement",
              "avg_views",
              "total_likes",
              "growth"
            ],
            "default": "followers"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 100,
            "default": 20
          },
          "category": {
            "type": "string",
            "description": "e.g. Food, Comedy, Travel, Beauty"
          },
          "account_type": {
            "type": "string",
            "description": "e.g. influencer, brand, podcast, politician"
          },
          "tier": {
            "type": "string",
            "description": "top, mega, mid, mini, people"
          },
          "min_followers": {
            "type": "integer"
          },
          "min_engagement": {
            "type": "number"
          }
        }
      }
    },
    {
      "name": "get_stats",
      "description": "Get database overview statistics for Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_categories",
      "description": "Get all creator categories with counts and average metrics for Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "niche_insights",
      "description": "Deep analytics for a specific niche in Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {
          "niche": {
            "type": "string",
            "minLength": 1,
            "description": "Niche to analyze"
          }
        },
        "required": [
          "niche"
        ]
      }
    },
    {
      "name": "suggest_creators_for_brief",
      "description": "Campaign creator suggestions for Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {
          "niche": {
            "type": "string"
          },
          "objective": {
            "type": "string",
            "enum": [
              "awareness",
              "engagement",
              "conversions",
              "content"
            ],
            "default": "engagement"
          },
          "budget": {
            "type": "string",
            "enum": [
              "low",
              "medium",
              "high"
            ],
            "default": "medium"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 20,
            "default": 10
          },
          "min_engagement": {
            "type": "number"
          }
        },
        "required": [
          "niche"
        ]
      }
    },
    {
      "name": "get_creator_history",
      "description": "Get historical data points for a Czech creator",
      "inputSchema": {
        "type": "object",
        "properties": {
          "username": {
            "type": "string",
            "minLength": 1
          }
        },
        "required": [
          "username"
        ]
      }
    },
    {
      "name": "get_trending_videos",
      "description": "Trending TikTok videos in Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 20
          }
        }
      }
    },
    {
      "name": "get_trending_sounds",
      "description": "Trending TikTok sounds in Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 20
          }
        }
      }
    },
    {
      "name": "get_trending_hashtags",
      "description": "Trending TikTok hashtags in Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 20
          }
        }
      }
    },
    {
      "name": "get_similar_creators",
      "description": "Find similar creators in Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {
          "username": {
            "type": "string",
            "minLength": 1
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 20,
            "default": 10
          }
        },
        "required": [
          "username"
        ]
      }
    },
    {
      "name": "get_category_creators",
      "description": "Creators in a category for Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "minLength": 1
          },
          "sort": {
            "type": "string",
            "enum": [
              "followers",
              "engagement",
              "avg_views"
            ],
            "default": "engagement"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 20
          }
        },
        "required": [
          "category"
        ]
      }
    },
    {
      "name": "compare_creators",
      "description": "Compare 2-3 Czech TikTok creators side by side",
      "inputSchema": {
        "type": "object",
        "properties": {
          "usernames": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "minItems": 2,
            "maxItems": 3
          }
        },
        "required": [
          "usernames"
        ]
      }
    },
    {
      "name": "tier_breakdown",
      "description": "Tier breakdown for Czech Republic",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string"
          }
        }
      }
    }
  ],
  "resources": [
    {
      "name": "platform-info",
      "uri": "dashr://platform-info",
      "mimeType": "text/plain",
      "description": "DASHR platform documentation"
    },
    {
      "name": "database-overview",
      "uri": "dashr://database-overview",
      "mimeType": "application/json",
      "description": "Live database stats (5-min cache)"
    }
  ],
  "connect": {
    "claude_desktop": {
      "mcpServers": {
        "dashr_cz": {
          "type": "url",
          "url": "https://dashr.live/mcp-cz"
        }
      }
    },
    "cursor": {
      "mcpServers": {
        "dashr_cz": {
          "url": "https://dashr.live/mcp-cz"
        }
      }
    }
  },
  "rest_api": {
    "description": "Plain JSON REST API — no MCP protocol needed. Works with ChatGPT, Perplexity, any HTTP client.",
    "base_url": "https://dashr.live/mcp-cz/api",
    "endpoints": [
      {
        "method": "GET",
        "path": "/api/search?q=keyword&limit=20",
        "description": "Search creators by keyword"
      },
      {
        "method": "GET",
        "path": "/api/creators?category=Food&sort=engagement&limit=10",
        "description": "List/filter creators"
      },
      {
        "method": "GET",
        "path": "/api/creator/{username}",
        "description": "Get single creator profile"
      },
      {
        "method": "GET",
        "path": "/api/stats",
        "description": "Database statistics"
      },
      {
        "method": "GET",
        "path": "/api/categories",
        "description": "All categories with metrics"
      },
      {
        "method": "GET",
        "path": "/api/trending/videos?limit=20",
        "description": "Trending TikTok videos in Czech Republic"
      },
      {
        "method": "GET",
        "path": "/api/trending/sounds?limit=20",
        "description": "Trending TikTok sounds in Czech Republic"
      },
      {
        "method": "GET",
        "path": "/api/trending/hashtags?limit=20",
        "description": "Trending TikTok hashtags in Czech Republic"
      }
    ]
  },
  "website": "https://dashr.live"
}