Skip to main content
Glama
darved2305

groww-mcp

by darved2305

pause_sip

Temporarily pause an active Systematic Investment Plan (SIP) on Groww to suspend automatic investments without cancellation.

Instructions

Pause an active SIP temporarily

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sip_idYesSIP ID to pause

Implementation Reference

  • Registration and handler implementation for the `pause_sip` tool. It uses the `growwClient.pauseSIP` method to perform the action.
    // ── pause_sip ─────────────────────────────────────────────
    server.tool(
      "pause_sip",
      "Pause an active SIP temporarily",
      {
        sip_id: z.string().describe("SIP ID to pause"),
      },
      async ({ sip_id }) => {
        try {
          const result = await growwClient.pauseSIP(sip_id);
          const text = [
            `⏸️ SIP PAUSED`,
            `${"─".repeat(40)}`,
            `SIP ID:  ${result.sipId}`,
            `Status:  ${result.status}`,
            `${result.message}`,
          ].join("\n");
          return mcpText(text);
        } catch (err) {
          return mcpError(normalizeError(err));
        }
      }
    );
  • Actual client implementation of the `pauseSIP` method that the MCP tool calls.
    async pauseSIP(sipId: string): Promise<{ sipId: string; status: string; message: string }> {

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/darved2305/groww-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server