-
Notifications
You must be signed in to change notification settings - Fork 0
Tools Get Developer Context
wiki-agent[bot] edited this page Jul 21, 2026
·
7 revisions
Returns the authenticated user's developer profile from the Chronova API.
-
Endpoint:
GET users/current -
Source:
src/tools/get-developer-context.ts - Parameters: none
-
Read-only hint:
true
const response = await chronova.get<{ data: ChronovaUser }>("users/current");
return {
content: [
{ type: "text", text: JSON.stringify(response.data, null, 2) },
],
};{
id: string;
username: string;
email: string;
avatar_url: string | null;
subscription: { plan: string; status: string };
github_connected: boolean;
organizations: Array<{ id: string; name: string; role: string }>;
created_at: string;
modified_at: string;
}-
401 UNAUTHORIZEDif the API key is missing or invalid.
No input schema parameters are required — the tool uses the API key resolved at startup.