Skip to main content

AUVY Docs

Run neurons (agents), pathways (workflows), and receptors (triggers) in your workspace. Store assets and artifacts, browse and search catalog data, and follow jobs and traces for long-running work. Start with the TypeScript SDK (@auvy-synapse/client). Use MCP or the CLI for assistants and scripts; use HTTP when you need a non-TypeScript stack.
AI agents: start with Build with AI, agent-onboarding/SKILL.md, and llms.txt before calling the API.

Quick start

1

Get an API key

cortex.auvy.aiAdmin → API keys → Create API Key.
2

Install the SDK

npm install @auvy-synapse/client
export AUVY_API_KEY=ak_live_...
3

First invoke

import { fromApiKey } from '@auvy-synapse/client'
const auvy = await fromApiKey()
const { receptor } = await auvy.receptors.get(auvy.workspaceSlug!, 'support-bot')
const { job_id } = await auvy.receptors.fire(receptor.id, { message: 'Hello' })
Pick your path: First API call · First SDK call · First CLI & MCP · Integrate the API.

Choose your surface

SurfaceBest forDocs
TypeScript SDKNode, Bun, browser — typed helpers (recommended)SDK introduction
MCPCursor, Claude Desktop, ChatGPTMCP server
CLITerminal scripts, JSON automationCLI
HTTPNon-TypeScript stacksAPI reference
CredentialUse
API keyBackend, cron, CLI, MCP
Publishable key + JWTBrowser apps
Share token (?t=...)Public receptor/trace links
Details: Authentication.

Common goals

GoalStart here
Method names for agentsSDK source of truth
Invoke + stream + errorsJobs, streaming, and errors
Browse / search catalogauvy.resourcesResources API
OAuth integrationsConnect SDK
Neuron scope (core / workspace / brain)Neurons — Scope

Product nouns

NounRole
NeuronConfigurable agent (model, tools, memory)
PathwayWorkflow graph
ReceptorTrigger that dispatches a neuron or pathway
JobAsync run — poll or stream via job_id
Long-running invoke returns a job_id. Server automation uses an API key; browser apps use publishable key + JWT.

Quickstart

Minimal Node.js example: Quickstart.

Machine-readable docs

AssetURL
Curated indexllms.txt
Agent skillagent-onboarding/SKILL.md
OpenAPIopenapi.json