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
- 🚀 Direct API Integration: Simple and reliable access to Bing Webmaster Tools
- 📊 Comprehensive Features: Site management, traffic analytics, crawl data, and more
- 🛡️ Error Handling: Robust error handling with detailed logging
- 🎯 MCP Compliant: Full compatibility with Model Context Protocol
- 📈 Rich Functionality: URL submission, keyword analysis, sitemap management, and more
- Node.js 16+ (for npm/npx)
- Python 3.10+ (installed automatically via npm)
- Bing Webmaster API key (Get your API key)
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 .
- Sign in to Bing Webmaster Tools
- Go to Settings → API Access
- Generate your API key
Claude Code (Command Line)
# 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
Claude Desktop
- Open Claude Desktop
- Go to
Claude → Settings
- Select
Developer
from the sidebar - Click
Edit Config
- Add the following to your configuration:
{
"mcpServers": {
"bing-webmaster": {
"command": "npx",
"args": ["-y", "@isiahw1/mcp-server-bing-webmaster@latest"],
"env": {
"BING_WEBMASTER_API_KEY": "your_api_key_here"
}
}
}
}
- Save the file and restart Claude Desktop
Configuration file locations:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Linux:
~/.config/Claude/claude_desktop_config.json
Cursor
- Launch Cursor
- Open
Cursor → Settings → Cursor Settings
- Select
MCP
in the left sidebar - Click
Add new global MCP server
- Paste this configuration:
{
"mcpServers": {
"bing-webmaster": {
"command": "npx",
"args": ["-y", "@isiahw1/mcp-server-bing-webmaster@latest"],
"env": {
"BING_WEBMASTER_API_KEY": "your_api_key_here"
}
}
}
}
- Restart Cursor
Windsurf
- Open Windsurf
- Navigate to Settings → MCP Configuration
- Add the following configuration:
{
"mcpServers": {
"bing-webmaster": {
"command": "npx",
"args": ["-y", "@isiahw1/mcp-server-bing-webmaster@latest"],
"env": {
"BING_WEBMASTER_API_KEY": "your_api_key_here"
}
}
}
}
- Restart Windsurf
Development Setup (Local Installation)
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
After configuration, you should be able to:
- See "bing-webmaster" in your MCP servers list
- Use commands like "Show me all my sites in Bing Webmaster Tools"
- Access all Bing Webmaster Tools functions
"Could not attach to MCP server" error:
- Check your API key is correct
- Ensure you have internet connectivity
- For Claude Desktop: Check logs in Settings → Developer → Open Logs Folder
- For Claude Code: Run with
claude --mcp-debug
"spawn mcp-server-bing-webmaster ENOENT" error:
- Make sure you're using
npx
as the command, notmcp-server-bing-webmaster
- If you have an old global installation, uninstall it:
npm uninstall -g @isiahw1/mcp-server-bing-webmaster
get_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 user
get_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 URLs
get_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 URL
submit_url
- Submit a single URL for indexingsubmit_url_batch
- Submit multiple URLs at onceget_url_submission_quota
- Check your URL submission limits
submit_content
- Submit page content directly without crawlingget_content_submission_quota
- Get content submission quota information
submit_sitemap
- Submit a new sitemapremove_sitemap
- Remove a sitemapget_feeds
- Get all RSS/Atom feeds for a site
get_keyword_data
- Get detailed data for specific keywordsget_related_keywords
- Find related search termsget_keyword_stats
- Get historical statistics for a specific keyword
get_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 website
get_blocked_urls
- View blocked URLsadd_blocked_url
- Block URLs from crawlingremove_blocked_url
- Unblock URLs
get_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 block
get_query_parameters
- Get URL normalization parameters (may require special permissions)add_query_parameter
- Add URL normalization parameterremove_query_parameter
- Remove a URL normalization parameter
get_country_region_settings
- Get country/region targeting settings (may require special permissions)add_country_region_settings
- Add country/region targeting settingsremove_country_region_settings
- Remove country/region targeting settings
add_page_preview_block
- Add a page preview block to prevent rich snippetsget_active_page_preview_blocks
- Get list of active page preview blocksremove_page_preview_block
- Remove a page preview block
get_site_moves
- Get history of site moves/migrationssubmit_site_move
- Submit a site move/migration notification
get_children_url_info
- Get information about child URLs under a parent URLget_children_url_traffic_info
- Get traffic information for child URLs
Once configured, you can use these tools in Claude:
"Show me all my verified sites in Bing Webmaster Tools"
"What are the top search queries for example.com?"
"Submit https://example.com/new-page for indexing"
"Show me crawl errors for my site"
"What's my daily URL submission quota?"
"Get detailed stats for the query 'best products' on my site"
"Submit this HTML content directly for https://example.com/page"
"Show me traffic info for my top 10 pages"
"Add [email protected] as an administrator for my site"
"Block all URLs matching /temp/* pattern"
"Get historical data for the keyword 'seo tools'"
"Configure crawl rate to slow for my site"
"Get keyword suggestions related to 'marketing'"
# Clone the repository
git clone https://github.com/isiahw1/mcp-server-bing-webmaster.git
cd mcp-server-bing-webmaster
# Create virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install in development mode
pip install -e .
# Set your API key
export BING_WEBMASTER_API_KEY=your_api_key_here
# Run the server
python -m mcp_server_bwt
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see LICENSE file for details.
For issues, questions, or contributions, please visit: https://github.com/isiahw1/mcp-server-bing-webmaster