Connect
One click, from the app
When you create an API key, the modal offers Add to Cursor and Copy Claude Code command, both already carrying that key. That is the shortest path, and it is only offered there: a key is shown exactly once, so a link published on this page could only carry a placeholder, and a placeholder installs a server that fails on first use.Claude Code, one line
-s user to make it available in
every project instead.
By hand
Add the server to your client’s config. The key goes in anAuthorization
header, exactly as it does for the REST API.
Discovery works without a key. A client can connect and list the tools with no
Authorization header at all, so you can see what is on offer before buying
anything. Calling a tool needs a key.The five tools
Six endpoints become five tools because the single and batch lookups answer the
same question at two sizes and bill by the same rule.
walletlink_resolve_wallets takes 1 to 50 addresses and picks the endpoint for
you.
It is the same meter
The tools carry your key into the same handlers the REST API uses, so nothing about billing changes. Misses are free, a match means an X handle or a Farcaster account, and an ENS name on its own is returned and not charged. See credits. Two consequences worth knowing before you point an agent at it: A reverse lookup can spend 100 credits in one call. A page holds up to 100 wallets and each one is a match. The free allowance is 100 matches per rolling 30 days, so a single widely held handle can spend all of it at once. There is no page-size parameter. Have the agent callwalletlink_account_balance first,
which is free.
Nothing is reserved. The balance is checked, not held, so a call that
resolves more than you have left is allowed to finish and the next one fails
with no credits. That is the same behaviour the REST API and the app have.
What the tools return
Not the raw API record. The 40-odd fields per wallet are trimmed to the identity, whether the owner attested it, and whether the X handle still reaches anyone, which is the field no competing source publishes.reaches_someone and reachability are omitted when we have not resolved
the handle. Absent is not false: see
when a handle stops being true.
The REST surface
Everything these tools do is also available over the REST API, described in OpenAPI 3.1 atdocs.walletlink.social/openapi.yaml
if you would rather generate a client than install a server.
Errors
A failed call comes back as a tool error with a readable message, never as a transport failure, so the session survives and the agent can tell you what went wrong. Out of credits reads as “No credits left. Buy a pack to continue.”Limits
Tool calls are limited per key, on the same three windows as the REST API. See rate limits. Everything except a tool call is limited per IP address, at 120 requests an hour. That coversinitialize, tools/list and every other method, all of
which answer without reaching the API and so are not metered against any key.
Tool calls are not subject to it. They are metered against your key instead, on
the three windows above.