mcp-server-bwt
by zizzfizzix·★ 6·Score 34
Python MCP server exposing Bing Webmaster Tools API functionality to AI assistants like Claude.
Overview
mcp-server-bwt provides a comprehensive bridge between AI assistants and Bing Webmaster Tools, allowing AI systems to manage sites, submit URLs for indexing, analyze traffic, and crawl website data directly through the MCP protocol. It wraps the existing bing-webmaster-tools Python library to expose functionality as MCP tools that can be used by AI clients.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you work with Bing Webmaster Tools regularly and want to streamline SEO tasks through conversational AI interactions.
When NOT to choose this
Don't choose this if you primarily work with other search engines' webmaster tools or need functionality not exposed by the Bing Webmaster API.
Tools this server exposes
12 tools extracted from the READMEget_sitesList all verified sites in your Bing Webmaster Tools account
submit_urlSubmit a single URL for indexing
get_query_statsGet statistics for search queries
get_crawl_issuesGet crawling issues
get_keyword_statsGet statistics for a keyword
get_url_infoGet information about a URL
submit_url_batchSubmit multiple URLs for indexing in a batch
get_page_statsGet statistics for pages
get_blocked_urlsGet blocked URLs
add_siteAdd a new site to your account
get_rank_and_traffic_statsGet rank and traffic statistics
get_link_countsGet link counts
Comparable tools
Installation
Installation
Using uvx (recommended)
Add to Claude desktop config:
"mcpServers": {
"mcp_server_bwt": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/zizzfizzix/mcp-server-bwt",
"mcp_server_bwt"
]
}
}Using make
- Install dependencies:
make install- Add to Claude desktop config:
"mcpServers": {
"bwtServer": {
"command": "/PATH/TO/mcp-server-bwt/.venv/bin/python",
"args": ["/PATH/TO/mcp-server-bwt/mcp_server_bwt/main.py"],
"env": {
"BING_WEBMASTER_API_KEY": "YOUR_API_KEY_HERE"
}
}
}Compare mcp-server-bwt with
Last updated · Auto-generated from public README + GitHub signals.