Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.chartcastr.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Cursor supports MCP servers from version 0.40 onwards. You can add Chartcastr as an MCP server so Cursor’s AI can read your account data when you ask it to.

Prerequisites

  • Cursor version 0.40 or later
  • A Chartcastr account on any paid plan
  • An API key from Settings → API Keys in your Chartcastr dashboard

Setup

1. Generate an API key

In Chartcastr, go to Settings → API Keys and create a new key.

2. Add Chartcastr as an MCP server

You can configure MCP servers globally or per-project.
Create or edit ~/.cursor/mcp.json:
{
  "mcpServers": {
    "chartcastr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://api.chartcastr.com/api/mcp",
        "--header",
        "X-API-Key:YOUR_API_KEY"
      ]
    }
  }
}
Replace YOUR_API_KEY with the key from step 1.

3. Enable the server in Cursor Settings

  1. Open Cursor SettingsMCP
  2. You should see chartcastr listed. Toggle it on.
  3. Click Refresh if it doesn’t appear immediately.

4. Use it in Agent mode

Switch Cursor to Agent mode (not Ask or Edit). You can now reference Chartcastr tools in your prompts.

Available Tools

ToolDescription
list_sourcesList all data sources connected to your account
list_destinationsList all configured destinations (Slack, email, etc.)
list_connectionsList all active chart delivery connections
get_latest_pulseFetch the most recent AI analysis for a connection
verify_connectionConfirm a connection is active
open_chartcastrGenerate a deep link to open Chartcastr

Example Prompts (in Agent mode)

  • “List my Chartcastr sources”
  • “Which of my connections are currently active?”
  • “Get the latest pulse for my Xero connection”

Further Reading