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
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"
}
}
}
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"
}
}
}
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
After adding the server to Claude, you must authenticate with Meow. 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
- Use OAuth as the connection mechanism
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 and OAuth as the connection mechanism.{
"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