- Home
- MCP servers
- Bulk Whois API
Bulk Whois API
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"priyansh4320-bulk-whois-api": {
"command": "python",
"args": [
"mcp_server/main.py",
"stdio"
],
"env": {
"CONFIG": "{}",
"SECURITY": "YOUR_SECURITY_VARS",
"CONFIG_PATH": "mcp_server/mcp_config.json"
}
}
}
}You deploy this MCP Server to expose an OpenAPI-driven Whois API as aMulti-Agent Conversation protocol endpoint. It lets clients interact with the API through MCP transports, enabling structured multi-agent conversations and scalable integration.
How to use
Launch the server in stdio mode to enable local interaction with your MCP client. Start it with the following command, then connect your client using the standard MCP transport expectations for stdio. You can also customize the runtime using environment variables if you need to point to a specific config file or adjust security parameters.
How to install
- Prerequisites: Python 3.9+ and a working Python package manager (pip)
- Optional: uv for a lightweight server runner
- Clone the repository
git clone <repository-url>
- Change to the server directory
cd mcp-server
- Install dependencies
pip install -e ".[dev]"
Additional sections
Configuration and runtime details are provided below to help you run and customize the server. You can adjust where the server reads its configuration and how it authenticates requests through environment variables.
{"mcpServers": [
{
"type": "stdio",
"name": "bulk_whois_mcp",
"command": "python",
"args": ["mcp_server/main.py","stdio"],
"env": [
{"name": "CONFIG_PATH", "value": "mcp_server/mcp_config.json"},
{"name": "CONFIG", "value": "{}"},
{"name": "SECURITY", "value": "YOUR_SECURITY_VARS"}
]
}
]}