This MCP server provides a bridge between AI assistants (like Claude or Cursor) and the Bing Webmaster Tools API, allowing AI assistants to interact with your Bing Webmaster Tools account through various tools and commands.
When using uvx
, no specific installation is needed as it directly runs mcp_server_bwt from the client app.
In your Claude config, specify:
"mcpServers": {
"mcp_server_bwt": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/zizzfizzix/mcp-server-bwt",
"mcp_server_bwt"
]
}
}
In your Zed settings.json add:
"context_servers": [
"bwtServer": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/zizzfizzix/mcp-server-bwt",
"mcp_server_bwt"
]
}
]
Alternatively, install using make:
make install
In your Claude config, specify:
"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"
}
}
}
In your Zed settings.json add:
"context_servers": {
"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"
}
}
}
Once configured, you can use the MCP server with Claude to interact with your Bing Webmaster Tools account. Here are some example prompts:
The server provides the following Bing Webmaster Tools API functionality:
get_sites
: List all verified sites in your accountadd_site
: Add a new site to your accountverify_site
: Verify ownership of a siteremove_site
: Remove a site from your accountget_site_roles
: Get roles for a specific siteadd_site_roles
: Add roles to a siteremove_site_role
: Remove a role from a siteget_site_moves
: Get information about site movessubmit_site_move
: Submit a site move requestsubmit_url
: Submit a single URL for indexingsubmit_url_batch
: Submit multiple URLs for indexing in a batchsubmit_content
: Submit content for indexingsubmit_feed
: Submit a feed for indexingget_feeds
: Get all submitted feedsget_feed_details
: Get details about a specific feedremove_feed
: Remove a feed from your accountget_url_submission_quota
: Check your URL submission quotaget_content_submission_quota
: Check your content submission quotafetch_url
: Fetch a URL for indexingget_fetched_urls
: Get all fetched URLsget_fetched_url_details
: Get details about a specific fetched URLget_query_stats
: Get statistics for search queriesget_query_traffic_stats
: Get traffic statistics for search queriesget_query_page_stats
: Get page statistics for search queriesget_query_page_detail_stats
: Get detailed page statistics for search queriesget_page_stats
: Get statistics for pagesget_page_query_stats
: Get query statistics for pagesget_rank_and_traffic_stats
: Get rank and traffic statisticsget_crawl_stats
: Get crawling statisticsget_crawl_settings
: Get crawling settingssave_crawl_settings
: Save crawling settingsget_crawl_issues
: Get crawling issuesget_keyword
: Get information about a keywordget_keyword_stats
: Get statistics for a keywordget_related_keywords
: Get related keywordsget_link_counts
: Get link countsget_url_links
: Get links for a URLget_deep_link
: Get deep link informationget_deep_link_blocks
: Get deep link blocksadd_deep_link_block
: Add a deep link blockremove_deep_link_block
: Remove a deep link blockupdate_deep_link
: Update a deep linkget_deep_link_algo_urls
: Get deep link algorithm URLsget_connected_pages
: Get connected pagesadd_connected_page
: Add a connected pageget_url_info
: Get information about a URLget_url_traffic_info
: Get traffic information for a URLget_children_url_info
: Get information about child URLsget_children_url_traffic_info
: Get traffic information for child URLsget_blocked_urls
: Get blocked URLsadd_blocked_url
: Add a URL to the blocked listremove_blocked_url
: Remove a URL from the blocked listget_active_page_preview_blocks
: Get active page preview blocksadd_page_preview_block
: Add a page preview blockremove_page_preview_block
: Remove a page preview blockget_country_region_settings
: Get country/region settingsadd_country_region_settings
: Add country/region settingsremove_country_region_settings
: Remove country/region settingsget_query_parameters
: Get query parametersadd_query_parameter
: Add a query parameterremove_query_parameter
: Remove a query parameterenable_disable_query_parameter
: Enable or disable a query parameterTo add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "mcp_server_bwt" '{"command":"uvx","args":["--from","git+https://github.com/zizzfizzix/mcp-server-bwt","mcp_server_bwt"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"mcp_server_bwt": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/zizzfizzix/mcp-server-bwt",
"mcp_server_bwt"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"mcp_server_bwt": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/zizzfizzix/mcp-server-bwt",
"mcp_server_bwt"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect