Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.meow.com/llms.txt

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

The Meow MCP server lets AI assistants interact with your Meow account directly. Your assistant can list accounts, check balances, view transactions, look up contacts, manage invoices, and more — all through natural language.

Prerequisites

  • A Meow account
  • One of the supported MCP clients below
  • Network egress enabled in your AI agent. In Claude.ai, go to Settings > Capabilities. In Claude Code, go to Settings > Capabilities and toggle Allow network egress to All domains.

Connect to the Meow MCP server

To open Cursor and automatically add the Meow MCP, click install. Alternatively, add the following to your ~/.cursor/mcp.json file. To learn more, see the Cursor documentation.Install in Cursor
{
  "mcpServers": {
    "meow": {
      "url": "https://mcp.meow.com/cli"
    }
  }
}
Already have an account? Use the following MCP server instead. This requires OAuth authentication.
{
  "mcpServers": {
    "meow": {
      "url": "https://mcp.meow.com"
    }
  }
}

Example prompts

Once the MCP server is connected, try asking your assistant:
  • “What entities do I have access to?”
  • “What are my account balances?”
  • “Show me my recent transactions”
  • “List my contacts”
  • “Show me all pending bills”

Security

The Meow MCP server accesses your financial data. Follow these best practices:
  • Use OAuth when your client supports it — this is the most secure connection method
  • Use scoped API keys if connecting via Bearer token, to limit access to only the data your assistant needs
  • Never share configuration files containing your API key
  • Review the authentication guide for details on API key scopes