So you know which server this is: it reads our published documentation and nothing else. It is not an API into your Hello Clever account, so it cannot see your merchant data, balances, or transactions. If you want answers about your own payment data, Clever AI in the Merchant Portal is the tool for that.
Server details
Everything you need to set it up:
The server introduces itself as
Hello Clever. Use the URL exactly as it appears above: there is no separate host, port, or npx package to install.
What your AI app gets
Tools
Three of them, and your assistant chooses between them on its own.Search
Searches the whole site and hands back matching snippets with page titles and links. Great for broad or conceptual questions like “how do I authenticate”.
search_hello_cleverRead the docs
Reads the docs as a virtual read-only filesystem using
ls, tree, rg, cat, head, and jq. Handy for exact keyword matches, browsing the structure, or pulling up a full page.query_docs_filesystem_hello_cleverSubmit feedback
Sends a documentation problem back to our docs team: a page that is wrong, outdated, incomplete, or has an example that does not work.
submit_feedbackResources
You also get ahelloclever skill file, exposed as an MCP resource. If the tools give your assistant access to the content, the skill tells it how to use that content: which flows apply to payins and payouts, how to configure webhooks, and how to test in sandbox. Clients that support MCP resources pick it up automatically once you connect, so there is nothing extra to install.
What it covers
Everything in our published navigation, in every language the site ships:- Getting Started, Platform Overview, payment concepts, and Clever Concepts
- Merchant Portal and Clever AI guides
- Platform integrations such as Shopify, WooCommerce, Magento, and Xero
- The full API Reference, including the v1, v2, Payment Gateway 3, Card, and Cashback OpenAPI specs
- Security and compliance pages
Connect from the docs site
If you would rather not touch a config file, start here.1
Open the menu
At the top right of any page on this site, select the arrow next to the Copy page button.
2
Pick your option
Copy MCP Server puts
https://docs.helloclever.co/mcp on your clipboard, ready to paste into your client. Connect to Cursor installs it in Cursor for you in one click.Connect your AI app
Pick your tool below.- Claude Code
- Claude web and desktop
- Cursor
- VS Code
- Codex
- Other clients
One command in your terminal:Add
--scope project if you would like to commit the server to your repository’s .mcp.json and share it with your team, or --scope user to have it available in every project on your machine.To confirm, run /mcp inside Claude Code. You should see the server listed as connected.Check that it worked
Ask your assistant something our docs answer precisely and the open web does not. Any of these make a good test:- Using the Hello Clever docs MCP, what fields does a PayTo agreement need?
- Search the Hello Clever docs for the difference between a Payments Account and a Treasury Account.
- Read the v2 Payin endpoint from the Hello Clever docs and write me a curl request.
docs.helloclever.co, you are connected. If it stays vague and cites nothing, it is still working from memory: check that the server shows as connected in your client, then try again.
Call the server from your own code
Building your own integration? Any MCP client library can talk to the server. To try it from a terminal first, send a JSON-RPCinitialize call:
text/event-stream in your Accept header. And the search tool takes an optional language parameter, for example "language": "ja", if you want results from the Japanese pages. It defaults to en.
Rate limits
These limits keep the server available for everyone. Normal interactive use will not come close to them.
If you do go over, the server returns
429 Too Many Requests. Back off and retry: limits reset on a rolling hourly window, so you will not be locked out for long.
If something goes wrong
The server will not connect
The server will not connect
Check the URL is exactly
https://docs.helloclever.co/mcp, with no trailing slash and nothing after it. Then check your client is set to the HTTP transport rather than stdio or SSE. One thing that is not a problem: a 405 response if you open that URL in a browser. The endpoint only answers POST, so that is expected.My client is asking for an API key or an OAuth login
My client is asking for an API key or an OAuth login
It should not need one. The server is public and takes no credentials. If your client insists on a token, leave the field blank or choose the “no authentication” option.
It connects, but never seems to use the tools
It connects, but never seems to use the tools
Some clients only reach for MCP tools when the question clearly calls for them. Try naming the source in your prompt, for example “search the Hello Clever docs for…”. In Claude web and desktop, also check the connector is selected through the attachments button for that conversation.
I am getting answers from the old documentation
I am getting answers from the old documentation
The server indexes this site only. Anything on
legacy-docs.helloclever.co is outside the index, so answers citing it are coming from your model’s training data or a web search rather than from us.A page my assistant quoted is wrong
A page my assistant quoted is wrong
Please tell us. Ask your assistant to use the
submit_feedback tool with the page path and a description of the problem, and it reaches our docs team directly.Security and privacy
Connecting the server is low risk. Here are the specifics:- The server is read-only. The only tool that sends anything back to us is
submit_feedback, and all it sends is the page path and the feedback text your assistant supplies. - It serves published documentation. None of it is account-specific, so connecting it exposes none of your data to us.
- Your prompts stay with your AI provider. Only the search queries and file commands your assistant issues reach our documentation server.
- Adding the server to a shared config file such as
.mcp.jsonor.vscode/mcp.jsonis safe to commit. There are no secrets in it.
Where to go next
- Choosing an integration: pick your integration path before you start building
- Integration keys: the credentials your code needs, which the MCP server never handles
- API overview and Authentication: the reference pages your assistant will read most often
- Clever AI tutorials: the AI built into the Merchant Portal, which does read your payment data