← WebMCP Directory

Tool tree

solidmedya.com

Productivity & Business
https://solidmedya.com/
Web design, advertising, and digital marketing agency
Explore capabilities

Tools verified

get-contact-infoAnswer

Solid Medya ofis telefonları, e-postaları, WhatsApp ve adres bilgilerini döndürür.

View tool JSON
{
  "name": "get-contact-info",
  "kind": "answer",
  "impl": "imperative",
  "description": "Solid Medya ofis telefonları, e-postaları, WhatsApp ve adres bilgilerini döndürür.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
get-content-detailAnswer

Belirtilen tür ve slug için içerik JSON özeti döndürür (service, news, faq vb.).

View tool JSON
{
  "name": "get-content-detail",
  "kind": "answer",
  "impl": "imperative",
  "description": "Belirtilen tür ve slug için içerik JSON özeti döndürür (service, news, faq vb.).",
  "inputSchema": {
    "type": "object",
    "properties": {
      "type": {
        "type": "string",
        "enum": [
          "service",
          "news",
          "faq",
          "page",
          "portfolio",
          "video",
          "experience"
        ]
      },
      "slug": {
        "type": "string",
        "minLength": 1
      }
    },
    "required": [
      "type",
      "slug"
    ]
  }
}
get-faq-summaryAnswer

Solid Medya SSS (sık sorulan sorular) özetini veya tam listesini döndürür.

View tool JSON
{
  "name": "get-faq-summary",
  "kind": "answer",
  "impl": "imperative",
  "description": "Solid Medya SSS (sık sorulan sorular) özetini veya tam listesini döndürür.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "full": {
        "type": "boolean",
        "description": "true ise tüm SSS bölümlerini getirir.",
        "default": false
      }
    }
  }
}
get-latest-newsAnswer

Solid Medya haber/blog yazılarının güncel listesini döndürür.

View tool JSON
{
  "name": "get-latest-news",
  "kind": "answer",
  "impl": "imperative",
  "description": "Solid Medya haber/blog yazılarının güncel listesini döndürür.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 20,
        "default": 8
      }
    }
  }
}
get-page-contextAnswer

Geçerli sayfanın başlık, URL ve dil bilgisini döndürür.

View tool JSON
{
  "name": "get-page-context",
  "kind": "answer",
  "impl": "imperative",
  "description": "Geçerli sayfanın başlık, URL ve dil bilgisini döndürür.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
get-services-overviewAnswer

Solid Medya öne çıkan hizmet URL listesini döndürür.

View tool JSON
{
  "name": "get-services-overview",
  "kind": "answer",
  "impl": "imperative",
  "description": "Solid Medya öne çıkan hizmet URL listesini döndürür.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
navigate-siteAction

Solid Medya sitesinde dahili bir sayfaya gider.

View tool JSON
{
  "name": "navigate-site",
  "kind": "act",
  "impl": "imperative",
  "description": "Solid Medya sitesinde dahili bir sayfaya gider.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "path": {
        "type": "string",
        "description": "Site köküne göre yol; / ile başlamalı."
      }
    },
    "required": [
      "path"
    ]
  }
}
open-whatsappAction

Solid Medya WhatsApp hattını verilen mesajla açar.

View tool JSON
{
  "name": "open-whatsapp",
  "kind": "act",
  "impl": "imperative",
  "description": "Solid Medya WhatsApp hattını verilen mesajla açar.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "message": {
        "type": "string",
        "description": "Ön doldurulmuş mesaj.",
        "maxLength": 500
      }
    }
  }
}
search-site-contentAnswer

Site içeriğinde arama önerileri getirir.

View tool JSON
{
  "name": "search-site-content",
  "kind": "answer",
  "impl": "imperative",
  "description": "Site içeriğinde arama önerileri getirir.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Aranacak ifade.",
        "minLength": 2
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 12,
        "default": 8
      }
    },
    "required": [
      "query"
    ]
  }
}