ICICI Direct MCP Server
About
It is an HTTP-wrapped MCP server that provides access to the ICICI Direct Breeze API. It exposes tools via HTTP endpoints, enabling programmatic interaction with ICICI Direct trading and data services.
Details
- Author
- nicodishanthj
- Downloads
- 697
- Categories
- Other
Jump to
- HTTP-wrapped MCP server for ICICI Direct Breeze API
- Simple GET /info endpoint to list available tools
- POST /tools/call and direct per-tool endpoints for invocation
- Docker support for containerized deployment
- Cloud Run deployment configuration provided
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
ICICI Direct MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Set the ICICI_API_KEY environment variable to your API key, install dependencies with pip install -r requirements.txt, then run python server.py. The server listens on http://localhost:8080 and exposes three HTTP endpoints for tool discovery and invocation.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"icici direct mcp server": {
"icici-direct-mcp-server": {
"type": "http",
"url": "http://localhost:8080"
}
}
}
}
McpServers
{
"icici-direct-mcp-server": {
"type": "http",
"url": "http://localhost:8080"
}
}
ICICI Direct MCP Server
A simple HTTP-wrapped MCP server for accessing ICICI Direct Breeze API.
Quick Start
1. Set your API key in an environment variable:
export ICICI_API_KEY=your_api_key_here
2. Install dependencies:
pip install -r requirements.txt
3. Run the server:
python server.py
The server will be available at http://localhost:8080.
API Endpoints
- GET /info - Get information about available tools
- POST /tools/call - Call a tool with parameters
- POST /tools/{tool_name} - Direct endpoint for each tool
Docker Usage
Build and run with Docker:
docker build -t icici-direct-mcp-server . docker run -p 8080:8080 -e ICICI_API_KEY=your_api_key_here icici-direct-mcp-server
Cloud Run Deployment
gcloud builds submit --tag gcr.io/YOUR-PROJECT/icici-direct-mcp-server gcloud run deploy icici-direct-mcp-server
--image gcr.io/YOUR-PROJECT/icici-direct-mcp-server
--platform managed
--set-env-vars="ICICI_API_KEY=your_api_key_here"
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



