Skip to main content
Glama
aauth-dev

@aauth/praca

Official
by aauth-dev

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PRACA_PS_URLNoPerson Server URL (default: from local-keys agent config)
PRACA_AGENT_URLNoAgent provider URL (default: first configured)
PRACA_AGENT_TOKENNoAgent token for software-identity override (used with PRACA_AGENT_PRIVATE_JWK)
PRACA_REGISTRY_URLNoRegistry URL (default https://registry.aauth.dev)https://registry.aauth.dev
PRACA_AGENT_KEY_FILENoPath to agent key file for software-identity override (alternative to PRACA_AGENT_PRIVATE_JWK)
PRACA_AGENT_PRIVATE_JWKNoAgent private JWK for software-identity override (used with PRACA_AGENT_TOKEN)

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
find_resourcesA

Search the AAuth registry for discoverable resources by free-text query against name/description. Returns each result tagged added: true if already in your local resource set.

Currently added resources: no resources added yet

add_resourceA

Add an AAuth resource to your local set. Pass a bare host, host:port, or full URL — the agent proxy canonicalizes. Fetches the resource's well-known doc, validates, picks supported vocabularies. After adding: agent-token resources are immediately invokable; auth-token resources start an authorization flow on the first invoke.

Currently added resources: no resources added yet

list_resourcesA

Return your locally added resources with name, description, access_mode, last_used, and how many vocabularies the agent proxy picked. Cheap; safe to call anytime.

remove_resourceA

Remove a resource from your local set. Agent-proxy-local only — does NOT revoke any user grants at the Person Server; re-adding picks up existing grants transparently.

Currently added resources: no resources added yet

list_operationsA

List operations a resource exposes. Optional query is either free-text (matched against opId/summary/tags) or an OpenAPI path prefix (e.g. "/crm/v3/objects/contacts/*"). Returns summaries only — schemas are fetched via get_operations to keep token cost flat. Each op carries kind (sync.request/async.send/async.receive).

Currently added resources: no resources added yet

get_operationsA

Batch fetch full schemas (params, request body, response) for one or more operations on a resource. Separate from list_operations because schemas dominate token cost.

Currently added resources: no resources added yet

invokeB

Invoke an operation on a resource. Pass path_params, query, body (object) as needed. If authorization is required, the client opens the auth URL automatically — call invoke again after authorization completes. async.receive operations return subscribe_requires_subagent (v.next).

Currently added resources: no resources added yet

reset_tokensA

Clear all stored upstream OAuth tokens for a resource. Use during testing to force a fresh upstream OAuth flow without touching PS consent state.

Currently added resources: no resources added yet

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 8 tools

Disambiguation5/5

Each tool has a distinct purpose: find_resources searches the registry while list_resources shows local additions; list_operations provides summaries while get_operations fetches full schemas; invoke and reset_tokens serve unique actions. No two tools overlap in a way that would confuse an agent.

Naming Consistency4/5

Most tool names follow a consistent verb_noun snake_case pattern (find_resources, add_resource, list_resources, etc.), but 'invoke' is a lone verb without an object, which is a minor deviation from the established convention.

Tool Count5/5

With 8 tools, the set is well-scoped for managing AAuth resources and their operations. It covers discovery, local management, operation introspection, invocation, and token reset without unnecessary bloat.

Completeness5/5

The tool surface provides end-to-end coverage: resource discovery and CRUD (find/add/list/remove), operation exploration (list/get schemas), invocation (invoke), and testing support (reset_tokens). No obvious gaps that would block typical workflows.

Maintenance

ActivityNo data
ResponsivenessUnresponsive