Docs/Skills/Star Lookup Skill

Star Lookup Skill

Lookup star data

OperationalCredits 2 per callp50 1296msScience

Overview

Stars Lookup works by retrieving star data from a curated database and providing it in a structured format. The star database is updated regularly to ensure accurate and up-to-date information.

The tool

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

Tool call
{
  "name": "StarLookupSkill",
  "arguments": {
    "name": "Sirius"
  }
}

You do not name the tool yourself; the model picks it. Asking about Sirius in the terms this skill covers is enough for it to reach for StarLookupSkill on its own — naming it explicitly also works, and is the way to force the call.

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.

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

Per-client setup — Claude, 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. Premium arguments are accepted on every plan but only take effect on plans that include them.

ArgumentTypeDescription
nameRequiredstringThe name of the star for which you want to get the data (e.g., Sirius)

What the model gets back

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

Result
{
  "status": "ok",
  "error": null,
  "data": {
    "starName": "Sirius",
    "mass": 4.674385e+30,
    "diameter": 2825760,
    "galX": -5.895,
    "galY": -6.152,
    "galZ": -1.167,
    "dist": 8.6,
    "starType": "A1(V)",
    "temp": 9500,
    "color": "0xbaccff"
  }
}

Response fields

Paths are relative to data. Premium fields are absent rather than zeroed on plans that do not include them, so check for presence instead of comparing to 0.

FieldTypeExampleDescription
starNamestringSiriusThe name of the star
massnumber4.674385e+30Mass of the star in kilograms
diameterPremiumnumber2825760Diameter of the star in kilometers
galXPremiumnumber-5.895Galactic X coordinate position
galYPremiumnumber-6.152Galactic Y coordinate position
galZPremiumnumber-1.167Galactic Z coordinate position
distnumber8.6Distance to star in light-years
starTypestringA1(V)Stellar classification type (e.g., A1V)
tempPremiumnumber9500Surface temperature of the star in Kelvin
colorPremiumstring0xbaccffColor representation as hex code

Failure modes

Errors come back as tool errors carrying a sentence the model can act on, not a bare status code. Error handling covers the full list.

StatusWhat it means
400 / 422The arguments did not validate. The message names the offending one.
401The OAuth session is invalid or expired — reconnect the server.
403Blocked by a key restriction or an IP allow-list. Never a bad identity.
404This skill is not part of VerveKit. Check the catalog.
429Out of credits, or a brief rate limit. The message tells them apart.

A call costs 2 credits each time the tool actually runs; a model that reasons about the tool without calling it costs nothing.

Use cases

Astronomy Research
Use the Stars Lookup API to look up star data for astronomy research. Use the data to study stars, galaxies, and celestial objects
Educational Resources
Create educational resources by using the Stars Lookup API to look up star data. Use the data to teach students about stars, constellations, and the universe
Stargazing Apps
Build stargazing apps by using the Stars Lookup API to look up star data. Use the data to provide users with information about stars, planets, and celestial events
Space Exploration
Explore space by using the Stars Lookup API to look up star data. Use the data to learn about the properties, characteristics, and behavior of stars

Other ways to use Star Lookup Skill

Set up Star Lookup 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 →
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 →

More in Science:

Was this page helpful?