{
    "@context": "https://webmachinelearning.github.io/webmcp/",
    "name": "Konya Reklam Ajansı",
    "description": "Konya Reklam Ajansı Dijitalde büyümek isteyen markalar için performans odaklı reklam, SEO ve sosyal medya çözümleri. Solid Medya ile daha fazla müşteri ve daha fazla satış elde edin.",
    "version": "2.0",
    "spec": "https://webmachinelearning.github.io/webmcp/",
    "baseUrl": "https://reeklamajansi.com",
    "llmsTxt": "https://reeklamajansi.com/llms.txt",
    "capabilities": [
        "navigation",
        "search",
        "contact",
        "faq",
        "content-listing",
        "ui-panels"
    ],
    "tools": [
        {
            "name": "get_page_context",
            "description": "Geçerli sayfanın türü, başlığı, URL, bölümler, önerilen eylemler ve kayıtlı araçları döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "get_site_summary",
            "description": "Firma adı, slogan, site özeti ve temel iletişim bilgilerini tek seferde döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "get_breadcrumbs",
            "description": "Sayfa breadcrumb (ekmek kırıntısı) zincirini döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "navigate_to",
            "description": "Site içinde belirtilen yola gider.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "path": {
                        "type": "string",
                        "description": "Site içi yol (/hizmetlerimiz, /hizmet-{slug})"
                    },
                    "url": {
                        "type": "string",
                        "description": "path ile aynı"
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "resolve_content",
            "description": "Hizmet, haber veya kurumsal sayfa slug'ına göre URL çözer ve isteğe bağlı yönlendirir.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "type": {
                        "type": "string",
                        "enum": [
                            "service",
                            "news",
                            "page"
                        ]
                    },
                    "slug": {
                        "type": "string"
                    },
                    "navigate": {
                        "type": "boolean",
                        "description": "true ise sayfaya gider"
                    }
                },
                "required": [
                    "type",
                    "slug"
                ],
                "additionalProperties": false
            }
        },
        {
            "name": "search_site",
            "description": "Hizmet, haber ve kurumsal sayfalarda arama yapar.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "minLength": 2
                    },
                    "q": {
                        "type": "string",
                        "minLength": 2
                    },
                    "limit": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 30
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "submit_search_form",
            "description": "Arama formunu doldurup gönderir.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "minLength": 2
                    },
                    "q": {
                        "type": "string",
                        "minLength": 2
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "get_search_results",
            "description": "Arama sayfasındaki mevcut sorgu ve sonuçları döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "get_site_navigation",
            "description": "Ana menü bağlantılarını listeler.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "get_contact_info",
            "description": "Firma iletişim bilgilerini döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "get_social_links",
            "description": "Sosyal medya profil bağlantılarını döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "initiate_contact",
            "description": "Telefon, e-posta veya WhatsApp iletişimini başlatır.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "method": {
                        "type": "string",
                        "enum": [
                            "phone",
                            "tel",
                            "mobile",
                            "email",
                            "whatsapp"
                        ]
                    }
                },
                "required": [
                    "method"
                ],
                "additionalProperties": false
            }
        },
        {
            "name": "list_services",
            "description": "Aktif hizmetleri listeler.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "limit": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 50
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "list_news",
            "description": "Haber ve duyuruları listeler.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "limit": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 50
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "list_gallery",
            "description": "Foto galeri öğelerini listeler.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "limit": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 48
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "list_references",
            "description": "Referans / müşteri logolarını listeler.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "limit": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 50
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "list_corporate_pages",
            "description": "Kurumsal (sayfa-*) içeriklerini listeler.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "limit": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 50
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "list_testimonials",
            "description": "Müşteri yorumlarını listeler.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "limit": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 20
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "list_faq",
            "description": "Sayfadaki SSS soru-cevaplarını döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "toggle_faq",
            "description": "SSS sorusunu açar veya kapatır.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "index": {
                        "type": "integer",
                        "minimum": 0
                    },
                    "question": {
                        "type": "string"
                    },
                    "open": {
                        "type": "boolean"
                    }
                },
                "additionalProperties": false
            }
        },
        {
            "name": "scroll_to_section",
            "description": "Sayfada belirtilen bölüme kaydırır.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "sectionId": {
                        "type": "string"
                    }
                },
                "required": [
                    "sectionId"
                ],
                "additionalProperties": false
            }
        },
        {
            "name": "get_page_headings",
            "description": "Sayfadaki görünür başlıkları (h1-h3) DOM'dan okur.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "open_ui_panel",
            "description": "Mobil arama veya menü panelini açar.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "panel": {
                        "type": "string",
                        "enum": [
                            "search",
                            "menu"
                        ]
                    }
                },
                "required": [
                    "panel"
                ],
                "additionalProperties": false
            }
        },
        {
            "name": "get_service_detail",
            "description": "Hizmet detay sayfası bilgisini döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "get_news_detail",
            "description": "Haber detay sayfası bilgisini döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "get_corporate_page_detail",
            "description": "Kurumsal sayfa detay bilgisini döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        },
        {
            "name": "get_related_items",
            "description": "Detay sayfasındaki ilgili içerikleri döndürür.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            }
        }
    ],
    "routes": [
        {
            "path": "/",
            "type": "anasayfa",
            "tools": [
                "get_page_context",
                "get_site_summary",
                "get_breadcrumbs",
                "navigate_to",
                "resolve_content",
                "search_site",
                "submit_search_form",
                "get_site_navigation",
                "get_contact_info",
                "get_social_links",
                "initiate_contact",
                "list_services",
                "list_news",
                "list_gallery",
                "list_testimonials",
                "list_faq",
                "toggle_faq",
                "scroll_to_section",
                "get_page_headings",
                "open_ui_panel"
            ]
        },
        {
            "path": "/hizmetlerimiz",
            "type": "hizmetlerimiz"
        },
        {
            "path": "/haberler",
            "type": "haberler"
        },
        {
            "path": "/foto-galeri",
            "type": "fotogaleri"
        },
        {
            "path": "/referanslarimiz",
            "type": "referanslarimiz"
        },
        {
            "path": "/iletisim",
            "type": "iletisim"
        },
        {
            "path": "/ara",
            "type": "arama"
        }
    ]
}