dev.1pass/logi-approval

logi Agent Approval Gate — human approval on the phone before high-risk agent actions.

Otherv0.1.2

logi (1pass) — Claude Code plugins

Agent plugins for logi / 1pass, the passkey-first sign-in service.

PluginWhat it does
logi-integrateIntegrate 1pass sign-in into your app — a skill that walks the agent through RP registration and OIDC integration, plus the @1pass/mcp server for managing your apps, redirect URIs, and docs lookup.
logi-approvalAgent Approval Gate — the agent asks a human for Face ID / passkey approval on their phone before performing a high-risk action. Bundles @logi-auth/mcp-approval.

Install (Claude Code)

claude plugin marketplace add dcode-co/logi-plugins
claude plugin install logi-integrate@logi
claude plugin install logi-approval@logi   # optional

Then set the env vars each server needs:

  • logi-integrate: LOGI_API_KEY — a Personal API Key from start.1pass.dev (Settings → API Keys).
  • logi-approval: LOGI_AGENT_TOKEN, LOGI_AGENT_PUBLIC_ID (and LOGI_AGENT_PRIVATE_KEY for signed mode) — see the Agent Approval quickstart.

Other agent clients (Cursor, Codex, Copilot, …)

The skills follow the open Agent Skills format — copy any plugins/*/skills/<name>/ directory into your client's skills directory. Add the MCP servers with your client's MCP configuration using the same npx commands found in each plugin's .mcp.json.

Single-file skill install without the plugin system:

curl -fsSL https://docs.1pass.dev/skills/logi-rp-integrate/SKILL.md \
  -o ~/.claude/skills/logi-rp-integrate/SKILL.md --create-dirs

Docs

License

MIT

Installation

Source-derived launch command. Check the maintainer’s required arguments and credentials before running:

bash
npx -y @logi-auth/mcp-approval

Set up in your AI client

Merge this template into ~/Library/Application Support/Claude/claude_desktop_config.json. Keep existing servers. Add any arguments, credentials, and permissions required by the maintainer; this template has not been install-tested.

json
{
  "mcpServers": {
    "dev-1pass-logi-approval": {
      "command": "npx",
      "args": [
        "-y",
        "@logi-auth/mcp-approval"
      ]
    }
  }
}

Restart Claude Desktop completely for changes to take effect. Confirm the server appears connected in the client’s tool list, then try a read-only example from its documentation.

Claude Desktop setup reference

Package

@logi-auth/mcp-approvalnpm

Compatible MCP Clients

dev.1pass/logi-approval works with any MCP-compatible client. Copy the config snippet from the Configuration section above and add it to the file shown for your client, then restart the application.

  • Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop completely for changes to take effect.
  • Cursor~/.cursor/mcp.jsonRestart Cursor for changes to take effect.
  • VS Code.vscode/mcp.jsonReload VS Code window for changes to take effect.
  • Windsurf~/.codeium/windsurf/mcp_config.jsonRestart Windsurf for changes to take effect.
  • Claude Code.mcp.jsonSave at the project root, then start Claude Code in that project and review the MCP server approval prompt. Keep real credentials out of shared files.

Learn More