{
    "version": "1.0",
    "tools": [
        {
            "name": "get_site_info",
            "description": "Return basic site metadata (name, description, URL, language).",
            "category": "core",
            "endpoint": "https://taketask.com/wp-json/"
        },
        {
            "name": "search_posts",
            "description": "Search posts, pages or custom post types on the site.",
            "category": "content",
            "endpoint": "https://taketask.com/wp-json/wp/v2/search?search={query}",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "description": "Free-text search query."
                    }
                },
                "required": [
                    "query"
                ]
            }
        },
        {
            "name": "get_post",
            "description": "Retrieve a single post or page by ID or slug.",
            "category": "content",
            "endpoint": "https://taketask.com/wp-json/wp/v2/posts/{id}",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string",
                        "description": "Post ID or slug."
                    }
                },
                "required": [
                    "id"
                ]
            }
        },
        {
            "name": "get_categories",
            "description": "List all post categories with their slugs and counts.",
            "category": "content",
            "endpoint": "https://taketask.com/wp-json/wp/v2/categories"
        },
        {
            "name": "get_menu",
            "description": "Return the items of a navigation menu.",
            "category": "navigation",
            "endpoint": "https://taketask.com/wp-json/wp/v2/menus"
        }
    ],
    "servers": [
        {
            "name": "taketask.com-public-metadata",
            "description": "",
            "url": "https://taketask.com",
            "transport": "http",
            "tools": [
                {
                    "name": "get_site_info",
                    "description": "Return basic site metadata (name, description, URL, language).",
                    "category": "core",
                    "endpoint": "https://taketask.com/wp-json/"
                },
                {
                    "name": "search_posts",
                    "description": "Search posts, pages or custom post types on the site.",
                    "category": "content",
                    "endpoint": "https://taketask.com/wp-json/wp/v2/search?search={query}",
                    "inputSchema": {
                        "type": "object",
                        "properties": {
                            "query": {
                                "type": "string",
                                "description": "Free-text search query."
                            }
                        },
                        "required": [
                            "query"
                        ]
                    }
                },
                {
                    "name": "get_post",
                    "description": "Retrieve a single post or page by ID or slug.",
                    "category": "content",
                    "endpoint": "https://taketask.com/wp-json/wp/v2/posts/{id}",
                    "inputSchema": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string",
                                "description": "Post ID or slug."
                            }
                        },
                        "required": [
                            "id"
                        ]
                    }
                },
                {
                    "name": "get_categories",
                    "description": "List all post categories with their slugs and counts.",
                    "category": "content",
                    "endpoint": "https://taketask.com/wp-json/wp/v2/categories"
                },
                {
                    "name": "get_menu",
                    "description": "Return the items of a navigation menu.",
                    "category": "navigation",
                    "endpoint": "https://taketask.com/wp-json/wp/v2/menus"
                }
            ]
        }
    ]
}