The Bing Searches Analysis Toolkit provides a comprehensive system for collecting, processing, and analyzing Bing search data to extract valuable insights and patterns from search queries. It enables automated data collection, result parsing, and trend analysis to help you identify emerging topics and search patterns.
To install the Bing Searches Analysis Toolkit, you'll need Node.js 18 or higher. Run the following command to install the package:
npm install bing-searches-toolkit
Before getting started, make sure you have:
The toolkit can be configured with the following environment variables:
BING_API_KEY=your_bing_api_key
PROXY_URL=optional_proxy_endpoint
While a Bing API key is optional, it's recommended for better performance and to avoid rate limiting issues.
To collect data on a specific topic, use the collect
command:
bingsearch collect --topic "your-search-topic"
This will gather Bing search results related to your specified topic and save them for analysis.
After collecting search data, analyze it using the analyze
command:
bingsearch analyze --input results.json
This will process the collected search results and generate insights about trends and patterns.
The Bing Searches Analysis Toolkit is particularly useful for:
The toolkit systematically gathers Bing search results based on your configured parameters, allowing for consistent data collection over time.
Advanced extraction capabilities pull meaningful information from search results, including titles, snippets, URLs, and related searches.
Built-in analytics help identify search patterns and emerging topics from the collected data.
Export and analyze your data in multiple formats to suit your specific needs.
Customize search parameters to focus on specific regions, languages, or result types.
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 > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
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 explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.