IP Demographics SkillIP Demographics Skill

OnlineCredit Usage:5 per callTool:IPDemographicsSkill

The tool

Let your agent profile an IP's area. Call it as an MCP tool to pull location plus Census income, education and housing data for any IP.

Once your client is connected to the VerveKit MCP server, this appears in its tool list as IPDemographicsSkill. It is read-only and open-world: it fetches, it never mutates anything on your side, so most clients will call it without asking you to confirm.

Tool call
{
  "name": "IPDemographicsSkill",
  "arguments": {
    "ip": "173.172.81.20"
  }
}

What that looks like in a conversation

You don't name the tool — the model picks it. Asking about 173.172.81.20 in the terms this source covers is enough for it to reach for IPDemographicsSkill on its own.

Connecting

One server URL covers every skill in the catalog, including this one. Authorization is OAuth — the client opens a browser once and there is no key to paste into a config file.

Client config
{
  "mcpServers": {
    "vervekit": {
      "url": "https://api.vervekit.com/v1/mcp"
    }
  }
}
Endpoint
https://api.vervekit.com/v1/mcp

Per-client setup — Claude Desktop, Cursor, VS Code, ChatGPT — is on the MCP setup page.

Arguments

These are the properties on the tool's inputSchema, so a well-behaved client validates them before the call is made.

ArgumentTypeExampleDescription
ipRequiredstring173.172.81.20IPv4 or IPv6 address

What the model gets back

The result carries a structuredContent object matching the tool's declared outputSchema, so a client can read fields without parsing prose. status is "ok" on success and error is null; a null field means the value wasn't available for that input, not that the call failed.

Result
{
  "status": "ok",
  "error": null,
  "data": {
    "ip": "8.8.8.8",
    "location": {
      "zip": "94043",
      "city": "Mountain View",
      "state": "California",
      "stateCode": "CA",
      "country": "United States",
      "countryCode": "US",
      "latitude": 37.4056,
      "longitude": -122.0775,
      "timezone": "America/Los_Angeles"
    },
    "demographics": {
      "population": 81234,
      "medianAge": 34.5,
      "medianHouseholdIncome": 142567,
      "perCapitaIncome": 78234,
      "medianHomeValue": 1875000,
      "collegeEducatedPct": 68.3,
      "unemploymentRate": 3.2,
      "homeOwnershipRate": 45.6
    },
    "acsYear": 2022,
    "formatted": {
      "medianHouseholdIncome": "$142,567",
      "perCapitaIncome": "$78,234",
      "medianHomeValue": "$1,875,000"
    }
  }
}

Fields

Fields marked Premium need a paid plan. On a plan without them the key is absent rather than wrong, so a model never reasons over a substituted value.
FieldTypeExampleDescription
ipstring8.8.8.8The IP address the demographics were resolved for
locationobject{…}Where the IP address resolves to
location.zipstring94043ZIP code the IP address resolves to
location.citystringMountain ViewCity the IP address resolves to
location.statestringCaliforniaState the IP address resolves to
location.stateCodestringCATwo-letter state code
location.countrystringUnited StatesCountry the IP address resolves to
location.countryCodestringUSTwo-letter country code
location.latitudePremiumnumber37.4056Latitude coordinate
location.longitudePremiumnumber-122.0775Longitude coordinate
location.timezonestringAmerica/Los_AngelesIANA timezone of the resolved location
demographicsobject{…}Census figures for the ZIP code the IP resolves to
demographics.populationnumber81234Resident population of the ZIP code
demographics.medianAgenumber34.5Median age of residents in the ZIP code
demographics.medianHouseholdIncomenumber142567Median annual household income in the ZIP code
demographics.perCapitaIncomenumber78234Per capita income
demographics.medianHomeValuenumber1875000Median home value
demographics.collegeEducatedPctnumber68.3College educated percentage
demographics.unemploymentRatenumber3.2Percentage of the labour force unemployed
demographics.homeOwnershipRatePremiumnumber45.6Home ownership rate
acsYearnumber2022Year of the American Community Survey release the figures come from
formattedPremiumobject{…}Human-readable formatted currency values
formatted.medianHouseholdIncomePremiumstring$142,567Median household income formatted as currency
formatted.perCapitaIncomePremiumstring$78,234Per capita income formatted as currency
formatted.medianHomeValuePremiumstring$1,875,000Median home value formatted as currency

Failure modes

Errors come back as tool errors with a sentence the model can act on, not a bare status code.

StatusWhat it means
400 / 422The arguments didn't validate. The message names the offending one.
401The OAuth session is invalid or expired — reconnect the server.
403Out of credits. Not a bad key — the month's allowance is spent.
404This skill isn't part of VerveKit. Check the catalog.
429Brief rate limit. Retrying after a moment succeeds.

Other ways to use IP Demographics Skill

Set up IP Demographics Skill on VerveKit, or reach the same source a different way. Your VerveKit account and credits work on all of them — one key, one balance.

Call it as a REST APIOne HTTPS endpoint and an X-API-Key header, with SDKs for Node, Python and .NET.APIVerveReference →
Use it in Google Sheets or ExcelA =VERVE() formula fills a column — no script, no export, recalculates in place.VerveSheetsReference →
Ground an agent on itA cited, machine-checkable fact your model can't produce on its own.VerveContextReference →

Frequently asked questions

Do I have to tell the agent to use IPDemographicsSkill?

No. The tool's name and description are in the model's context once the server is connected, so it selects the tool when the question calls for it. Naming it explicitly works too and is useful when you want to force the call.

Does connecting the server expose every tool at once?

Yes — one connection lists the whole VerveKit catalog. Clients with a tool budget can usually filter the list; the credit cost is per call, so an unused tool costs nothing.

What does a call cost?

5 credits each time the tool actually runs. A model that reasons about the tool without calling it costs nothing.

Is there a REST version of this?

Yes — the same source is available as a plain HTTPS endpoint on APIVerve, linked above. Same data, same credits, same account.

What's Next?

Continue your journey with these recommended resources

Was this page helpful?