All MCP tools
Account & usageFree

get_account

Get account information

The account profile for the current key: email, credits, total used, key count, and plan. Free.

When an agent uses get_account

Call get_account to confirm which account a key belongs to and read its profile — email, remaining credits, total credits used, number of API keys, and plan. Agents use it to confirm self-registration succeeded, to surface identity in a UI, or as a lightweight health check that the key is valid. Costs no credits.

REST endpoint
GET /api/v1/account
Credit cost
Free

Input schema

This tool takes no arguments — call it with an empty arguments object.

Call it over MCP

An MCP client invokes the tool with a tools/call request. Hosted clients send this to https://verifly.email/mcp with your Authorization: Bearer vf_… header; the verifly-mcp-server package does the same with VERIFLY_API_KEY set.

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_account",
    "arguments": {}
  }
}

Posting that same call straight to the hosted endpoint:

curl -s -X POST "https://verifly.email/mcp" \
  -H "Authorization: Bearer vf_your_api_key" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_account","arguments":{}}}'

Equivalent raw REST call

Under the hood this tool calls GET /api/v1/account. If you are not using MCP, hit the REST API directly:

curl -s "https://verifly.email/api/v1/account" \
  -H "Authorization: Bearer vf_your_api_key"

What you get back

A JSON object with the account block: email, credits, total_credits_used, api_keys_count, max_api_keys, plan, and member_since.

Related tools

Use get_account in your agent

Verifly is the only email verifier with a hosted MCP server plus autonomous agent self-registration. An agent can call register_account for an instant key and 100 free credits, then start calling get_account — no human, no dashboard.