Rate limiting

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://docs.api.memo.bank/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Memo Bank API MCP server": {
  "url": "https://docs.api.memo.bank/mcp"
}
Close

We enforce a rate limit on the number of HTTP requests that can be made in a given period. When the limit is reached, our Premium Bank API will return a 429 Too Many Requests error.

To allow you to handle this rate limiting programmatically, the following headers are sent with every response:

  • RateLimit-Limit: total number of available requests between two quota resets;
  • RateLimit-Remaining: number of available requests until the quota is reset;
  • RateLimit-Reset: time remaining (in seconds) until the quota is reset.