Skip to main content
Glama

Veezee: LinkedIn people & company data for agents

Check credits and recent charges

get_usage
Read-only

Check your balance, plan, limits, and the last 10 charges (receipt ids included). Costs 0 credits and is exempt from the per-minute rate limit, so call it first to check your budget before running data tools, and any time after. Works the same on a trial key, a paid key, or an OAuth-connected account. The response includes upgrade_url (give it to your human when credits or plan limits block you; purchases credit this account directly with no login) and manage_url (give it to your human to change or cancel a paid plan in the Stripe billing portal). Trial accounts also get a claim_url that attaches an email so the account can be recovered if the key is lost. Not for fetching platform data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
usageYes
commonYes
entityYes
platformYes
freshnessYes
data_as_ofYes
canonical_urlYes
schema_versionYes
platform_fieldsYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed8 schema fields changed
    • addedOutput schema / properties / common / properties / free_tier
      Added value: +{
      +  "anyOf": [
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "credits_per_ip_day": {
      +          "maximum": 9007199254740991,
      +          "minimum": -9007199254740991,
      +          "type": "integer"
      +        },
      +        "remaining_today": {
      +          "maximum": 9007199254740991,
      +          "minimum": -9007199254740991,
      +          "type": "integer"
      +        },
      +        "resets": {
      +          "description": "UTC midnight when the day budget resets. ISO 8601.",
      +          "type": "string"
      +        },
      +        "used_today": {
      +          "maximum": 9007199254740991,
      +          "minimum": -9007199254740991,
      +          "type": "integer"
      +        }
      +      },
      +      "required": [
      +        "credits_per_ip_day",
      +        "used_today",
      +        "remaining_today",
      +        "resets"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "description": "Present on trial keys: the shared per-IP day budget this key actually spends (balance_remaining stays 0 on the free tier; other callers on the same IP draw from the same pool). Null on paid plans."
      +}
    • changedOutput schema / properties / common / required
      Previous value: -[
      -  "plan",
      -  "platforms",
      -  "balance_remaining",
      -  "realtime_ops_used",
      -  "realtime_ops_limit",
      -  "concurrent_limit",
      -  "recent_receipts",
      -  "claim_url",
      -  "upgrade_url",
      -  "manage_url"
      -]New value: +[
      +  "plan",
      +  "platforms",
      +  "balance_remaining",
      +  "free_tier",
      +  "realtime_ops_used",
      +  "realtime_ops_limit",
      +  "concurrent_limit",
      +  "recent_receipts",
      +  "claim_url",
      +  "upgrade_url",
      +  "manage_url"
      +]
    • changedOutput schema / properties / freshness / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "cache_age_seconds": {
      -        "anyOf": [
      -          {
      -            "maximum": 9007199254740991,
      -            "minimum": -9007199254740991,
      -            "type": "integer"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ]
      -      },
      -      "freshness_requested": {
      -        "enum": [
      -          "recent",
      -          "realtime"
      -        ],
      -        "type": "string"
      -      },
      -      "freshness_served": {
      -        "enum": [
      -          "recent",
      -          "realtime",
      -          "stale"
      -        ],
      -        "type": "string"
      -      },
      -      "served_at": {
      -        "type": "string"
      -      },
      -      "source_retrieved_at": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "description": "When the data was fetched from the source. ISO 8601."
      -      }
      -    },
      -    "required": [
      -      "source_retrieved_at",
      -      "served_at",
      -      "cache_age_seconds",
      -      "freshness_requested",
      -      "freshness_served"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "cache_age_seconds": {
      +        "anyOf": [
      +          {
      +            "maximum": 9007199254740991,
      +            "minimum": -9007199254740991,
      +            "type": "integer"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "freshness_requested": {
      +        "enum": [
      +          "recent",
      +          "realtime"
      +        ],
      +        "type": "string"
      +      },
      +      "freshness_served": {
      +        "enum": [
      +          "recent",
      +          "realtime",
      +          "stale"
      +        ],
      +        "type": "string"
      +      },
      +      "served_at": {
      +        "type": "string"
      +      },
      +      "served_from_cache": {
      +        "description": "True when these bytes were served from cache rather than fetched for this call. source_retrieved_at says how old they are.",
      +        "type": "boolean"
      +      },
      +      "source_retrieved_at": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "description": "When the data was fetched from the source. ISO 8601."
      +      }
      +    },
      +    "required": [
      +      "source_retrieved_at",
      +      "served_at",
      +      "cache_age_seconds",
      +      "served_from_cache",
      +      "freshness_requested",
      +      "freshness_served"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedOutput schema / properties / platform / anyOf
      Added value: +[
      +  {
      +    "enum": [
      +      "linkedin",
      +      "reddit",
      +      "x"
      +    ],
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / properties / platform / const
      Removed value: -"linkedin"
    • removedOutput schema / properties / platform / type
      Removed value: -"string"
    • addedOutput schema / properties / usage / properties / free_tier_hint
      Added value: +{
      +  "description": "Present on free-tier trial-key calls: what budget the call drew from and that paying upgrades this same key. Near the daily cap on unclaimed keys it also carries a claim link to relay to your human (claiming adds one-time credits).",
      +  "type": "string"
      +}
    • removedOutput schema / properties / usage / properties / keyless_hint
      Removed value: -{
      -  "description": "Present on keyless calls: what budget the call drew from and how to get a key with its own balance.",
      -  "type": "string"
      -}
  2. Changed5 schema fields changed
    • addedOutput schema / properties / common / properties / platforms
      Added value: +{
      +  "description": "Platforms this account's key may call. Grants are explicit; write to hello@veezee.io to enable more.",
      +  "items": {
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
    • changedOutput schema / properties / common / required
      Previous value: -[
      -  "plan",
      -  "balance_remaining",
      -  "realtime_ops_used",
      -  "realtime_ops_limit",
      -  "concurrent_limit",
      -  "recent_receipts",
      -  "claim_url",
      -  "upgrade_url",
      -  "manage_url"
      -]New value: +[
      +  "plan",
      +  "platforms",
      +  "balance_remaining",
      +  "realtime_ops_used",
      +  "realtime_ops_limit",
      +  "concurrent_limit",
      +  "recent_receipts",
      +  "claim_url",
      +  "upgrade_url",
      +  "manage_url"
      +]
    • changedOutput schema / properties / schema_version / const
      Previous value: -"1"New value: +"2"
    • addedOutput schema / properties / usage / properties / keyless_hint
      Added value: +{
      +  "description": "Present on keyless calls: what budget the call drew from and how to get a key with its own balance.",
      +  "type": "string"
      +}
    • removedOutput schema / properties / usage / properties / provision_hint
      Removed value: -{
      -  "description": "Present on keyless calls: how to get a free trial key with its own budget.",
      -  "type": "string"
      -}
  3. Changed1 schema field changed
    • addedOutput schema / properties / usage / properties / provision_hint
      Added value: +{
      +  "description": "Present on keyless calls: how to get a free trial key with its own budget.",
      +  "type": "string"
      +}
  4. First observed

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses zero cost, rate limit exemption, consistent behavior across account types, and includes URLs for upgrade, manage, and account recovery. No contradiction with annotations (readOnlyHint=true, openWorldHint=false).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

All sentences are informative and front-loaded with key purpose. No fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With zero parameters and an output schema, the description fully covers usage context, behavioral notes, and key response fields (URLs).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters needed; baseline is 4. Description adds context about returned URLs and account-specific behavior, exceeding baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it checks balances, plan, limits, and last 10 charges. Differentiates from LinkedIn-specific sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly advises calling first for budgeting before running data tools, and confirms it works on any account type. Also clarifies it's not for fetching platform data.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources