agent-auth-mcp

द्वारा better-auth

एजेंट ऑथ एमसीपी टूल का उपयोग प्रदाताओं की खोज करने, एजेंटों को कनेक्ट करने, क्षमताओं का प्रबंधन करने और एमसीपी प्रोटोकॉल के माध्यम से संचालन निष्पादित करने के लिए करें। इसका उपयोग तब करें जब...

npx skills add https://github.com/better-auth/agent-auth --skill agent-auth-mcp

Agent Auth MCP Tools

You have access to Agent Auth MCP tools for interacting with Agent Auth providers. Always prefer using these MCP tools for any agent authentication operations rather than making raw HTTP requests or writing custom code.

Starting the MCP Server

The MCP server is part of the CLI:

auth-agent mcp

Or with pre-configured providers:

auth-agent mcp --url https://api.example.com

Cursor / Claude Desktop configuration

{
  "mcpServers": {
    "auth-agent": {
      "command": "npx",
      "args": ["@auth/agent-cli", "mcp", "--url", "https://api.example.com"]
    }
  }
}

Available Tools

The MCP server exposes 17 tools. Follow the numbered workflow below.

Step 1: Discovery — Find a Provider

ToolParametersWhen to use
list_providers(none)Call this first. Lists all discovered/configured providers.
search_providersintent (required)Search the directory by name or intent (e.g. "deploy web apps", "vercel").
discover_providerurl (required)Look up a specific provider by URL. Only use if list/search didn't help.

Always start with list_providers. If empty, use search_providers or discover_provider.

Step 2: Capabilities — Understand What's Available

ToolParametersWhen to use
list_capabilitiesprovider (required), query, agent_id, limit, cursorList capabilities for a provider.
describe_capabilityprovider, name (required), agent_idGet full definition including input schema. Always call before executing.

Step 3: Connect — Authenticate an Agent

ToolParametersWhen to use
connect_agentprovider (required), capabilities, mode, name, reason, preferred_method, login_hint, binding_message, force_newConnect an agent to a provider. Returns agent_id.

Key parameters:

  • capabilities — Array of capability names to request.
  • mode"delegated" (acts for a user, default) or "autonomous" (independent).
  • preferred_method"device_authorization" (default, opens browser) or "ciba" (backchannel notification).
  • login_hint — User email for CIBA flow.
  • force_new — Create a new connection even if one exists.

Step 4: Use the Agent

ToolParametersWhen to use
execute_capabilityagent_id, capability (required), argumentsExecute a granted capability.
agent_statusagent_id (required)Check agent status, grants, and constraints.
sign_jwtagent_id (required), capabilities, audienceSign an agent JWT for manual use.
request_capabilityagent_id, capabilities (required), reason, preferred_method, login_hint, binding_messageRequest additional capabilities.
disconnect_agentagent_id (required)Revoke an agent.
reactivate_agentagent_id (required)Reactivate an expired agent.

Host Management

ToolParametersWhen to use
enroll_hostprovider, enrollment_token (required), nameEnroll a host with a one-time token.
rotate_agent_keyagent_id (required)Rotate an agent's keypair.
rotate_host_keyissuer (required)Rotate the host keypair for a provider.

Workflow Example

Here is the standard workflow for connecting to a provider and executing a capability:

1. list_providers
   → See what providers are already known

2. search_providers({ intent: "deploy web apps" })
   → Find a provider if none are known (or discover_provider with a URL)

3. list_capabilities({ provider: "https://api.example.com" })
   → See what the provider offers

4. describe_capability({ name: "deploy_app", provider: "https://api.example.com" })
   → Understand the input schema before executing

5. connect_agent({ provider: "https://api.example.com", capabilities: ["deploy_app"], name: "deploy-bot" })
   → Authenticate and get an agent_id
   → If approval is required, the user will be prompted

6. agent_status({ agent_id: "..." })
   → Confirm the agent is active and capabilities are granted

7. execute_capability({ agent_id: "...", capability: "deploy_app", arguments: { app: "my-app", env: "production" } })
   → Run the capability with the correct arguments

Important Rules

  • Never make raw HTTP requests to Agent Auth endpoints. Always use MCP tools.
  • Always call list_providers first. This tells you what's already configured.
  • Always call describe_capability before execute_capability. You need the input schema.
  • Always call agent_status after connect_agent. The agent may be pending approval.
  • Save the agent_id returned by connect_agent — every subsequent tool needs it.
  • Use constraints when connecting to limit agent permissions — pass them in the capabilities parameter as objects with name and constraints fields.
  • Handle approval flows. When connect_agent returns approval info (device code URL or CIBA), the user must approve before the agent becomes active. Poll agent_status to check.
  • Errors return structured objects like { error: "message", code: "error_code" } — check these and retry or adjust accordingly.

Capability Constraints

When connecting, you can restrict what an agent can do with its capabilities:

{
  "provider": "https://api.example.com",
  "capabilities": [
    "read_data",
    {
      "name": "transfer_money",
      "constraints": {
        "amount": { "max": 1000, "min": 1 },
        "currency": { "in": ["USD", "EUR"] }
      }
    }
  ]
}

Constraint types: eq (exact match), min/max (numeric bounds), in/not_in (allowed/blocked values).

When to Use CLI vs MCP

  • Use MCP tools when operating inside an MCP-enabled environment (Cursor, Claude Code, Claude Desktop) — the tools are already available and integrated.
  • Use the CLI when running from a terminal directly, scripting, or when MCP is not available.
  • Both expose the same operations and share the same storage (~/.agent-auth/).

better-auth की और Skills

agent-auth-cli
better-auth
एजेंट ऑथ सीएलआई (auth-agent) का उपयोग प्रदाताओं को खोजने, एजेंटों को कनेक्ट करने, क्षमताओं को प्रबंधित करने और संचालन निष्पादित करने के लिए करें। जब उपयोगकर्ता इंटरैक्ट करना चाहता है तब उपयोग करें…
official
better-icons
better-auth
200+ आइकन लाइब्रेरी से CLI और MCP सर्वर एकीकरण के साथ SVG खोजें और प्राप्त करें। प्रमुख संग्रहों (Lucide, Material Design Icons, Heroicons, Tabler, और 200+ अधिक) में प्रीफिक्स और परिणाम सीमा द्वारा फ़िल्टरिंग के साथ खोज का समर्थन करता है। आइकन खोजने, बैचों को SVG फ़ाइलों के रूप में डाउनलोड करने, और रंग और आकार अनुकूलन के साथ व्यक्तिगत आइकन प्राप्त करने के लिए CLI कमांड। AI एजेंटों के लिए MCP सर्वर टूल्स जिसमें स्मार्ट सिफारिशें, समान
official
better-auth-best-practices
better-auth
बेटर ऑथ सर्वर और क्लाइंट सेटअप डेटाबेस एडेप्टर, सत्र प्रबंधन, प्लगइन्स और सुरक्षा कॉन्फ़िगरेशन के साथ पूरा करें। इंस्टॉलेशन से लेकर डेटाबेस माइग्रेशन, एनवायरनमेंट वेरिएबल सेटअप और कई फ्रेमवर्क में रूट हैंडलर निर्माण तक पूरे वर्कफ़्लो को कवर करता है। कई डेटाबेस एडेप्टर (प्रिज्मा, ड्रिज़ल, मोंगोडीबी, डायरेक्ट कनेक्शन) को मॉडल ब
official
create-auth-skill
better-auth
TypeScript/JavaScript ऐप्स में Better Auth फ्रेमवर्क डिटेक्शन, डेटाबेस एडॉप्टर सेटअप और OAuth इंटीग्रेशन के साथ प्रमाणीकरण को स्कैफोल्ड और कार्यान्वित करें। प्रोजेक्ट स्कैनिंग के माध्यम से फ्रेमवर्क (Next.js, SvelteKit, Nuxt, Astro, Express, Hono), डेटाबेस (Prisma, Drizzle, MongoDB, raw drivers) और मौजूदा ऑथ लाइब्रेरी का पता लगाता है। कॉन्फ़िगरेबल ईमेल सत्यापन के साथ ईमेल/पासवर्ड, OAuth (Google, GitHub, Apple, Microsoft, Discord, Twitter
official
Email & Password Best Practices
better-auth
ईमेल और पासवर्ड सर्वोत्तम अभ्यास — AI एजेंटों के लिए एक इंस्टॉल करने योग्य कौशल, जो better-auth/skills द्वारा प्रकाशित है।
official
email-and-password-best-practices
better-auth
ईमेल सत्यापन, पासवर्ड रीसेट प्रवाह, और बेटर ऑथ के लिए अनुकूलन योग्य पासवर्ड नीतियां। वैकल्पिक प्रवर्तन के साथ ईमेल सत्यापन का समर्थन करता है ताकि सत्यापित होने तक साइन-इन अवरुद्ध किया जा सके, साथ ही कॉन्फ़िगरेबल टोकन समाप्ति और एकल-उपयोग रीसेट टोकन। अंतर्निहित सुरक्षा के साथ पासवर्ड रीसेट प्रवाह: पृष्ठभूमि में ईमेल भेजना, टाइमिंग अटैक रोकथाम, अमान्य अन
official
organization-best-practices
better-auth
We need to translate the given English text into Hindi. The text describes a multi-tenant organization setup with features like member management, role-based access control, team support via Better Auth. It mentions configuring organizations with customizable creation rules, membership limits, ownership constraints, automatic owner role assignment, managing members and invitations with email delivery, expiration windows, shareable invitation URLs, multiple roles per member, custom roles and permissions with dynamic access control, and permission checking. We must preserve product names, protocol names, URLs, numbers, technical terms. "Better Auth" is a product name, so keep as is. "Multi-tenant" is a technical term, but we can translate as "बहु-किरायेदार" or keep as is? Usually "multi-tenant" is kept in English in Hindi tech translations, but we can use "बहु-किरायेदार" if appropriate. However, the instruction says preserve technical terms, so likely keep "multi-tenant" as is. But the text is in English, we are translating to Hindi. I think
official
two-factor-authentication-best-practices
better-auth
बेहतर प्रमाणीकरण के लिए TOTP, OTP, बैकअप कोड और विश्वसनीय डिवाइस प्रबंधन के साथ बहु-कारक प्रमाणीकरण। तीन सत्यापन विधियों का समर्थन करता है: प्रमाणक ऐप्स (QR कोड के साथ TOTP), ईमेल/SMS कोड (OTP), और एकल-उपयोग बैकअप कोड। स्वचालित सत्र प्रबंधन, अस्थायी 2FA कुकीज़ और कॉन्फ़िगरेबल समाप्ति के साथ विश्वसनीय डिवाइस ट्रैकिंग के साथ पूर्ण 2FA साइन-इन प्रवाह को संभालता है। दर स
official