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
Cursor
VS Code
Claude Code
ChatGPT
Other
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.
{
"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"
}
}
}
To open VS Code and automatically add the Meow MCP, click install. Alternatively, add the following to your .vscode/mcp.json file in your workspace. To learn more, see the VS Code documentation.
{
"servers": {
"meow": {
"type": "http",
"url": "https://mcp.meow.com/cli"
}
}
}
Already have an account? Use the following MCP server instead. This requires OAuth authentication.{
"servers": {
"meow": {
"type": "http",
"url": "https://mcp.meow.com"
}
}
}
To add MCP to Claude Code, run the following command. To learn more, see the Claude Code documentation.claude mcp add --transport http meow https://mcp.meow.com/cli
After adding the server to Claude, you must authenticate with Meow.Already have an account? Use the following command instead. This requires OAuth authentication.claude mcp add --transport http meow https://mcp.meow.com
You can enable MCP servers on ChatGPT if you have a Pro, Plus, Business, Enterprise, or Education account. Follow the OpenAI documentation for instructions. Use the following parameters when setting up your custom connector:
- The server URL is
https://mcp.meow.com/cli
- Use OAuth as the connection mechanism
Already have an account? Use the server URL https://mcp.meow.com instead. This requires OAuth authentication. MCP is an open protocol supported by many clients. Your specific client documentation can advise you how to connect. Use the server URL https://mcp.meow.com/cli and OAuth as the connection mechanism.{
"meow": {
"url": "https://mcp.meow.com/cli"
}
}
Already have an account? Use the following MCP server instead. This requires OAuth authentication.{
"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