Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

get_content_submission_quota

Retrieve content submission quota details for a website from Bing Webmaster Tools to manage URL submission limits.

Instructions

Get content submission quota information.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes

Implementation Reference

  • The handler function that executes the tool logic: makes an API request to GetContentSubmissionQuota and processes the response.
    async def get_content_submission_quota( site_url: Annotated[str, "The URL of the site"] ) -> Dict[str, Any]: """ Get content submission quota information. Args: site_url: The URL of the site Returns: Content submission quota details """ async with api: quota = await api._make_request(f"GetContentSubmissionQuota?siteUrl={site_url}") return api._ensure_type_field(quota, "ContentSubmissionQuota")
  • Tool registration using the @mcp.tool decorator with name and description.
    name="get_content_submission_quota", description="Get content submission quota information.", )
  • Input schema defined by function parameter type annotation (site_url: str) and output type (Dict[str, Any]).
    async def get_content_submission_quota( site_url: Annotated[str, "The URL of the site"] ) -> Dict[str, Any]:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/isiahw1/mcp-server-bing-webmaster'

If you have feedback or need assistance with the MCP directory API, please join our Discord server