nuvama-mcp

alokamgnaneswarasai/nuvama-mcp

3.2

If you are the rightful owner of nuvama-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Nuvama-MCP integrates Nuvama's trading platform with Claude AI using the MCP framework, allowing direct interaction with the trading platform through Claude AI.

Nuvama-MCP ๐Ÿ› ๏ธ

This project integrates Nuvama's trading platform with Claude AI using the MCP framework, allows you to interact with nuvama trading platform directly through claude AI.

Features โœจ

  • ๐Ÿ“ˆ Place buy and sell orders for stocks.
  • ๐Ÿ“Š Fetch and display holdings from the API.
  • โšก FastMCP server integration for easy tool access.

Project Structure ๐Ÿ“‚

  • index.py: Contains the core logic for interacting with the trading API.
  • trade_mcp_server.py: Implements a FastMCP server to expose trading functionalities as tools.
  • .gitignore: Specifies files and directories to be ignored by Git.

Prerequisites โœ…

  • ๐Ÿ Python 3.x installed on your system.
  • ๐Ÿ“ฆ Required Python packages installed (e.g., FastMCP, APIConnect).
  • ๐Ÿ”‘ API credentials (API key, secret, and request ID).
  • ๐Ÿ“„ A CSV file containing stock symbols and exchange details.

Setup Instructions ๐Ÿ› ๏ธ

  1. Clone the repository to your local machine.

  2. Install the required Python packages:

    pip install -r requirements.txt
    
  3. Update the following placeholders in index.py:

    • api_key: Your API key.
    • api_secret: Your API secret.
    • request_id: Your request ID.
    • settings_file: Path to your settings file.
    • csv_file_path: Path to your instruments CSV file.
  4. Run the FastMCP server:

    uv run trade_mcp_server.py
    

Using the MCP Tools ๐Ÿ› ๏ธ

The FastMCP server exposes the following tools:

  • ๐Ÿ›’ buyorder: Place a buy order.
  • ๐Ÿ›๏ธ sellorder: Place a sell order.

You can call these tools directly from the MCP interface.

Configuring Claude for MCP Integration ๐Ÿค–

To enable Claude to recognize the MCP tools, create a configuration file (e.g., claude_config.json) in the appropriate directory and add the following content:

{
    "mcpServers": {
        "trade": {
            "command": "<path_to_uv_executable>",
            "args": [
                "--directory",
                "<path_to_trade_directory>",
                "run",
                "trade_server.py"
            ]
        }
    }
}

Replace <path_to_uv_executable> with the path to your uv.exe file and <path_to_trade_directory> with the path to your project directory. Place this configuration file in the relevant location for Claude to detect it.

This configuration allows Claude to interact with the MCP tools, enabling you to place orders directly from Claude using Natural Language.

Happy Trading! ๐Ÿš€