by isiahw1
Use Bing Webmaster Tools to check web traffic of a website, analyze SEO, and manage site health with 40+ powerful site m
Connects to Bing Webmaster Tools API through 40+ specialized tools for website SEO management, traffic analysis, and crawling diagnostics. Requires Bing Webmaster Tools API key.
Bing Webmaster Tools is a community-built MCP server published by isiahw1 that provides AI assistants with tools and capabilities via the Model Context Protocol. Use Bing Webmaster Tools to check web traffic of a website, analyze SEO, and manage site health with 40+ powerful site m It is categorized under analytics data, productivity.
You can install Bing Webmaster Tools in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Bing Webmaster Tools is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Bing Webmaster Tools reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Bing Webmaster Tools has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend Bing Webmaster Tools for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Bing Webmaster Tools surfaces stars and publisher context so we could sanity-check maintenance before adopting.
According to our notes, Bing Webmaster Tools benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Useful MCP listing: Bing Webmaster Tools is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated Bing Webmaster Tools against two servers with overlapping tools; this profile had the clearer scope statement.
We wired Bing Webmaster Tools into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
I recommend Bing Webmaster Tools for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Bing Webmaster Tools surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 52
An MCP (Model Context Protocol) server that provides access to Bing Webmaster Tools functionality through Claude and other MCP-compatible AI assistants.
# Add the MCP server with your API key
claude mcp add bing-webmaster -e BING_WEBMASTER_API_KEY=your_api_key_here -- npx -y @isiahw1/mcp-server-bing-webmaster@latest
# Launch Claude Code
claude
Add to your configuration (Settings → Developer → Edit Config):
{
"mcpServers": {
"bing-webmaster": {
"command": "npx",
"args": ["-y", "@isiahw1/mcp-server-bing-webmaster@latest"],
"env": {
"BING_WEBMASTER_API_KEY": "your_api_key_here"
}
}
}
}
Get your API key from Bing Webmaster Tools → Settings → API Access
The easiest way to use this MCP server is through npx (no installation required):
npx @isiahw1/mcp-server-bing-webmaster@latest
npm install -g @isiahw1/mcp-server-bing-webmaster
For contributors and developers:
git clone https://github.com/isiahw1/mcp-server-bing-webmaster.git
cd mcp-server-bing-webmaster
uv pip install -e .
# Add the MCP server with inline API key
claude mcp add bing-webmaster -e BING_WEBMASTER_API_KEY=your_api_key_here -- npx -y @isiahw1/mcp-server-bing-webmaster@latest
# Launch Claude Code
claude
# Set your API key
export BING_WEBMASTER_API_KEY="your_api_key_here"
# Add the MCP server
claude mcp add bing-webmaster -- npx -y @isiahw1/mcp-server-bing-webmaster@latest
# Launch Claude Code
claude
# Create .env file
echo "BING_WEBMASTER_API_KEY=your_api_key_here" > .env
# Add the MCP server
claude mcp add bing-webmaster -- npx -y @isiahw1/mcp-server-bing-webmaster@latest
# Launch Claude Code
claude
If you encounter issues, run with debug mode:
claude --mcp-debug
</details>
<details>
<summary><b>Claude Desktop</b></summary>
Claude → SettingsDeveloper from the sidebarEdit Config{
"mcpServers": {
"bing-webmaster": {
"command": "npx",
"args": ["-y", "@isiahw1/mcp-server-bing-webmaster@latest"],
"env": {
"BING_WEBMASTER_API_KEY": "your_api_key_here"
}
}
}
}
Configuration file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonCursor → Settings → Cursor SettingsMCP in the left sidebarAdd new global MCP server{
"mcpServers": {
"bing-webmaster": {
"command": "npx",
"args": ["-y", "@isiahw1/mcp-server-bing-webmaster@latest"],
"env": {
"BING_WEBMASTER_API_KEY": "your_api_key_here"
}
}
}
}
{
"mcpServers": {
"bing-webmaster": {
"command": "npx",
"args": ["-y", "@isiahw1/mcp-server-bing-webmaster@latest"],
"env": {
"BING_WEBMASTER_API_KEY": "your_api_key_here"
}
}
}
}
For developers working with the source code:
# Clone the repository
git clone https://github.com/isiahw1/mcp-server-bing-webmaster.git
cd mcp-server-bing-webmaster
# Install uv (if not already installed)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install dependencies
uv pip install -e .
{
"mcpServers": {
"bing-webmaster-dev": {
"command": "uv",
"args": ["run", "python", "-m", "mcp_server_bwt"],
"cwd": "/path/to/mcp-server-bing-webmaster",
"env": {
"BING_WEBMASTER_API_KEY": "your_api_key_here"
}
}
}
}
# Set environment variable
export BING_WEBMASTER_API_KEY="your_api_key_here"
# Run from the project directory
cd /path/to/mcp-server-bing-webmaster
claude mcp add bing-webmaster-dev -- uv run python -m mcp_server_bwt
</details>
After configuration, you should be able to:
"Could not attach to MCP server" error:
claude --mcp-debug"spawn mcp-server-bing-webmaster ENOENT" error:
npx as the command, not mcp-server-bing-webmasternpm uninstall -g @isiahw1/mcp-server-bing-webmasterget_sites - List all verified sites in your accountadd_site - Add a new site to Bing Webmaster Toolsverify_site - Verify ownership of a siteremove_site - Remove a site from your accountget_site_roles - Get list of users with access to the siteadd_site_roles - Delegate site access to another userget_query_stats - Get search query performance dataget_page_stats - Get page-level traffic statisticsget_rank_and_traffic_stats - Get overall ranking and traffic dataget_query_page_stats - Get detailed traffic statistics for a specific queryget_query_page_detail_stats - Get statistics for specific query-page combinationsget_url_traffic_info - Get traffic information for specific URLsget_crawl_stats - View crawl statistics and bot activityget_crawl_issues - Get crawl errors and issuesget_crawl_settings - Get crawl settings for a siteupdate_crawl_settings - Update crawl settings (slow/normal/fast)get_url_info - Get detailed index information for a specific URLsubmit_url - Submit a single URL for indexingsubmit_url_batch - Submit multiple URLs at onceget_url_submission_quota - Check your URL submission limitssubmit_content - Submit page content directly without crawlingget_content_submission_quota - Get content submission quota informationsubmit_sitemap - Submit a new sitemapremove_sitemap - Remove a sitemapget_feeds - Get all RSS/Atom feeds for a siteget_keyword_data - Get detailed data for specific keywordsget_related_keywords - Find related search termsget_keyword_stats - Get historical statistics for a specific keywordget_link_counts - Get inbound link statisticsget_url_links - Get inbound links for specific site URL (requires link and page parameters)add_connected_page - Add a page that has a link to your websiteget_blocked_urls - View blocked URLsadd_blocked_url - Block URLs from crawlingremove_blocked_url - Unblock URLsget_deep_link_blocks - Get list of blocked deep linksadd_deep_link_block - Block deep links for specific URL patternsremove_deep_link_block - Remove a deep link blockget_query_parameters - Get URLPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.