npm @logi-auth/mcp-approvalstdioMITupdated 1mo ago
Agent plugins for logi / 1pass, the passkey-first sign-in service.
What can you do with logi approval?
logi (1pass) — Claude Code plugins
Agent plugins for logi / 1pass, the passkey-first sign-in service.
| Plugin | What it does |
|---|---|
| logi-integrate | Integrate 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-approval | Agent 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(andLOGI_AGENT_PRIVATE_KEYfor 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
- Integration guides: https://docs.1pass.dev
- LLM-readable docs: https://docs.1pass.dev/llms.txt
License
MIT
Install
Add logi approval to your client. Pick the one you use.
claude mcp add mcp-approval -- npx -y @logi-auth/mcp-approvalcodex mcp add mcp-approval -- npx -y @logi-auth/mcp-approvalamp mcp add mcp-approval -- npx -y @logi-auth/mcp-approval{
"mcpServers": {
"mcp-approval": {
"command": "npx",
"args": [
"-y",
"@logi-auth/mcp-approval"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-approval": {
"command": "npx",
"args": [
"-y",
"@logi-auth/mcp-approval"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-approval","command":"npx","args":["-y","@logi-auth/mcp-approval"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-approval": {
"command": "npx",
"args": [
"-y",
"@logi-auth/mcp-approval"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-approval": {
"command": "npx",
"args": [
"-y",
"@logi-auth/mcp-approval"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-approval": {
"command": "npx",
"args": [
"-y",
"@logi-auth/mcp-approval"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-approval": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@logi-auth/mcp-approval"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-approval": {
"command": {
"path": "npx",
"args": [
"-y",
"@logi-auth/mcp-approval"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @logi-auth/mcp-approvalRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 25 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Aug 7, 2026 |