Metadata-Version: 2.4
Name: bing-image-search-mcp
Version: 0.0.2
Summary: Bing Image Search MCP Server without Access Keys, Provides Bing Image Search Results to AI Agents
Author-email: aihubadmin@126.com
License: MIT License
Project-URL: Homepage, https://www.deepnlp.org/store/ai-agent/mcp-server
Project-URL: Repository, https://github.com/AI-Agent-Hub/AI-Agent-Marketplace
Keywords: Bing Search,Bing Image Search,MCP,API,AI Agent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.28.1
Requires-Dist: mcp[cli]>=1.9.4
Requires-Dist: requests>=2.17.0
Requires-Dist: bs4>=4.0.1

# bing-image-search-mcp

MCP Server of Bing Web Search With No Access Key Requested

This MCP server is a mcp wrapper of pypi package Bing Image Search Web URL (https://github.com/AI-Hub-Admin/bing-image-search-mcp) which easy to use Bing Image Search APIs.

# Features


# Install
```
pip install bing-image-search-mcp
```

# MCP Integration

### OneKey MCP Router
StreamingHttpConnection 

Beta Test Keys 
```
DEEPNLP_ONEKEY_ROUTER_ACCESS=BETA_TEST_KEY_OCT_2025
```
You can also generate your personal non-contraint keys here [OneKey](https://www.deepnlp.org/workspace/keys) and Seee the onekey mcp router Demo [Google Maps MCP Server OneKey Example](https://www.deepnlp.org/store/mcp-server/map/pub-google-maps/google-maps) for reference on how to use one access key to access commercial MCPs.


```
{
    "mcpServers": {
		"deepnlp-onekey-bing-image-search": {
			"url": "https://agent.deepnlp.org/mcp?server_name=bing-image-search-mcp&onekey=BETA_TEST_KEY_OCT_2025"
		}
    }
}
```


### UVX
```
{
    "mcpServers": {
        "bing-image-search-mcp": {
            "command": "uvx",
            "args": ["bing-image-search-mcp"]
        }
    }
}
```


### GitHub Source Running Localing
```
git clone https://github.com/AI-Hub-Admin/bing-image-search-mcp
cd bing-image-search-mcp

```

Run From Your Local Folder

```
{
    "mcpServers": {
        "bing-image-search-mcp": {
            "command": "uv",
            "args": ["--directory", "/path_to_folder/bing-image-search-mcp/src/bing_image_search_mcp", "run", "server.py"]
        }
    }
}
```

