analytics-dataproductivity

Bing Webmaster Tools

by isiahw1

Use Bing Webmaster Tools to check web traffic of a website, analyze SEO, and manage site health with 40+ powerful site m

Integrates with Bing Webmaster Tools API to provide website management and SEO analytics through over 40 specialized tools for site management, traffic analysis, crawling diagnostics, URL submission, sitemap management, keyword research, and link analysis.

github stars

11

40+ specialized SEO toolsRequires Bing Webmaster API key

best for

  • / Website owners optimizing Bing search visibility
  • / SEO professionals managing multiple sites
  • / Web developers monitoring site health

capabilities

  • / Submit URLs to Bing for indexing
  • / Analyze website traffic and search performance
  • / Diagnose crawling issues and errors
  • / Manage XML sitemaps
  • / Research keywords and rankings
  • / Analyze backlinks and link profiles

what it does

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.

about

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.

how to install

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.

license

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.

readme

MCP Server for Bing Webmaster Tools

npm version License: MIT Python Node

An MCP (Model Context Protocol) server that provides access to Bing Webmaster Tools functionality through Claude and other MCP-compatible AI assistants.

🚀 Quick Start

For Claude Code Users:

# 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

For Claude Desktop Users:

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

Table of Contents

Features

  • 🚀 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

Installation

Prerequisites

Quick Start

The easiest way to use this MCP server is through npx (no installation required):

npx @isiahw1/mcp-server-bing-webmaster@latest

Global Installation (Optional)

npm install -g @isiahw1/mcp-server-bing-webmaster

Development Installation

For contributors and developers:

git clone https://github.com/isiahw1/mcp-server-bing-webmaster.git
cd mcp-server-bing-webmaster
uv pip install -e .

Configuration

1. Get your Bing Webmaster API Key

  1. Sign in to Bing Webmaster Tools
  2. Go to Settings → API Access
  3. Generate your API key

2. Client Setup Instructions

<details> <summary><b>Claude Code (Command Line)</b></summary>

Option 1: Quick Setup (Recommended)

# 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

Option 2: Using System Environment Variable

# 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

Option 3: Using Environment File

# 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

Troubleshooting

If you encounter issues, run with debug mode:

claude --mcp-debug
</details> <details> <summary><b>Claude Desktop</b></summary>
  1. Open Claude Desktop
  2. Go to Claude → Settings
  3. Select Developer from the sidebar
  4. Click Edit Config
  5. 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"
      }
    }
  }
}
  1. 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
</details> <details> <summary><b>Cursor</b></summary>
  1. Launch Cursor
  2. Open Cursor → Settings → Cursor Settings
  3. Select MCP in the left sidebar
  4. Click Add new global MCP server
  5. 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"
      }
    }
  }
}
  1. Restart Cursor
</details> <details> <summary><b>Windsurf</b></summary>
  1. Open Windsurf
  2. Navigate to Settings → MCP Configuration
  3. 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"
      }
    }
  }
}
  1. Restart Windsurf
</details> <details> <summary><b>Development Setup (Local Installation)</b></summary>

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 .

Claude Desktop Configuration for Development

{
  "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"
      }
    }
  }
}

Claude Code Configuration for Development

# 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>

3. Verify Installation

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

Troubleshooting

"Could not attach to MCP server" error:

  1. Check your API key is correct
  2. Ensure you have internet connectivity
  3. For Claude Desktop: Check logs in Settings → Developer → Open Logs Folder
  4. For Claude Code: Run with claude --mcp-debug

"spawn mcp-server-bing-webmaster ENOENT" error:

  • Make sure you're using npx as the command, not mcp-server-bing-webmaster
  • If you have an old global installation, uninstall it: npm uninstall -g @isiahw1/mcp-server-bing-webmaster

Available Tools

Site Management

  • get_sites - List all verified sites in your account
  • add_site - Add a new site to Bing Webmaster Tools
  • verify_site - Verify ownership of a site
  • remove_site - Remove a site from your account
  • get_site_roles - Get list of users with access to the site
  • add_site_roles - Delegate site access to another user

Traffic Analysis

  • get_query_stats - Get search query performance data
  • get_page_stats - Get page-level traffic statistics
  • get_rank_and_traffic_stats - Get overall ranking and traffic data
  • get_query_page_stats - Get detailed traffic statistics for a specific query
  • get_query_page_detail_stats - Get statistics for specific query-page combinations
  • get_url_traffic_info - Get traffic information for specific URLs

Crawling & Indexing

  • get_crawl_stats - View crawl statistics and bot activity
  • get_crawl_issues - Get crawl errors and issues
  • get_crawl_settings - Get crawl settings for a site
  • update_crawl_settings - Update crawl settings (slow/normal/fast)
  • get_url_info - Get detailed index information for a specific URL

URL Management

  • submit_url - Submit a single URL for indexing
  • submit_url_batch - Submit multiple URLs at once
  • get_url_submission_quota - Check your URL submission limits

Content Submission

  • submit_content - Submit page content directly without crawling
  • get_content_submission_quota - Get content submission quota information

Sitemaps & Feeds

  • submit_sitemap - Submit a new sitemap
  • remove_sitemap - Remove a sitemap
  • get_feeds - Get all RSS/Atom feeds for a site

Keyword Analysis

  • get_keyword_data - Get detailed data for specific keywords
  • get_related_keywords - Find related search terms
  • get_keyword_stats - Get historical statistics for a specific keyword

Link Analysis

  • get_link_counts - Get inbound link statistics
  • get_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

Content Blocking

  • get_blocked_urls - View blocked URLs
  • add_blocked_url - Block URLs from crawling
  • remove_blocked_url - Unblock URLs

Deep Link Management

  • get_deep_link_blocks - Get list of blocked deep links
  • add_deep_link_block - Block deep links for specific URL patterns
  • remove_deep_link_block - Remove a deep link block

URL Parameters

  • get_query_parameters - Get URL

FAQ

What is the Bing Webmaster Tools MCP server?
Bing Webmaster Tools is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Bing Webmaster Tools?
This profile displays 10 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
MCP server reviews

Ratings

4.510 reviews
  • Shikha Mishra· Oct 10, 2024

    Bing Webmaster Tools is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Piyush G· Sep 9, 2024

    We evaluated Bing Webmaster Tools against two servers with overlapping tools; this profile had the clearer scope statement.

  • Chaitanya Patil· Aug 8, 2024

    Useful MCP listing: Bing Webmaster Tools is the kind of server we cite when onboarding engineers to host + tool permissions.

  • Sakshi Patil· Jul 7, 2024

    Bing Webmaster Tools reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Ganesh Mohane· Jun 6, 2024

    I recommend Bing Webmaster Tools for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Oshnikdeep· May 5, 2024

    Strong directory entry: Bing Webmaster Tools surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Dhruvi Jain· Apr 4, 2024

    Bing Webmaster Tools has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Rahul Santra· Mar 3, 2024

    According to our notes, Bing Webmaster Tools benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Pratham Ware· Feb 2, 2024

    We wired Bing Webmaster Tools into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Yash Thakker· Jan 1, 2024

    Bing Webmaster Tools is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.