Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.CakeRepository/1password

NPM · @TAKESCAKE/1PASSWORD-MCP · SCANNED AUG 3

MCP server for 1Password service accounts — tools and resources for vaults and credentials

+19 this week 66 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
Schema Quality & AI Usability87
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 1415 tokens (~88/item across 16 items; 13 tools + 3 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @takescake/1password-mcp

# add to Claude Code
claude mcp add cakerepository-1password -- npx -y @takescake/1password-mcp
# add to Codex CLI
codex mcp add cakerepository-1password -- npx -y @takescake/1password-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "cakerepository-1password": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@takescake/1password-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add cakerepository-1password --command npx --arg -y --arg @takescake/1password-mcp
# ~/.hermes/config.yaml
mcp_servers:
  cakerepository-1password:
    command: "npx"
    args: ["-y", "@takescake/1password-mcp"]
// mcp.json
{
  "mcpServers": {
    "cakerepository-1password": {
      "command": "npx",
      "args": [
        "-y",
        "@takescake/1password-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +66
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Malware scan: unverified → pass security
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Tool coverage: unverified → 100 functional
    • Stability: unverified → 0.23 functional
    • MCP protocol: unverified → pass functional
    • Schema quality: unverified → 100 functional
    • Licence: Apache-2.0 functional
  • 1 Aug 26 −32
    • Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
    • Capabilities: pass → unverified functional
    • Tool coverage: 100 → unverified functional
    • Schema quality: 100 → unverified functional
  • 31 Jul 26 −23
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −21
    • Known CVEs: partial → unverified security
    • Install scripts: pass → unverified security
    • Provenance: fail → unverified security
    • Dependency health: partial → unverified functional
    • License: pass → unverified functional
    • Maintenance: pass → unverified functional
    • Licence: Apache-2.0 functional
  • 28 Jul 26 +29
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Schema quality: unverified → excellent functional
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Licence: Apache-2.0 functional
  • 27 Jul 26 47

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@takescake/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 97 packages

97 packages in the resolved dependency tree · 95 deprecated · 29 stale · 2 without a linked repository.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 13 exposed · ~1,356 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
item_archive ~62

Archive an item in a 1Password vault. The item is moved to the archive and hidden from regular views, rather than being permanently deleted.

NameTypeReqDescription
itemIdstringyesItem ID to archive.
vaultIdstringyesVault ID containing the item.

No output schema declared.

No examples provided.

item_delete ~51

Permanently delete an item from a 1Password vault. This action cannot be undone.

NameTypeReqDescription
itemIdstringyesItem ID to delete.
vaultIdstringyesVault ID containing the item.

No output schema declared.

No examples provided.

item_edit ~178

Edit an existing 1Password item. Update the title, notes (pass an empty string to clear notes), tags, website URL, upsert fields, or remove fields. Only referenced fields are changed; all others are preserved.

NameTypeReqDescription
fieldsarrayFields to upsert (create or update) by id or title.
itemIdstringyesItem ID to edit.
notesstringFull replacement of the item's notes. Pass an empty string to clear notes.
removeFieldsarrayField ids or titles to remove from the item.
tagsarrayReplacement set of tags (replaces all existing tags).
titlestringNew item title.
urlstringReplacement primary website URL for the item.
vaultIdstringyesVault ID containing the item.

No output schema declared.

No examples provided.

item_get ~159

Retrieve a full 1Password item — title, category, tags, notes, and all fields (id, title, type, section). Concealed field values are hidden unless reveal is true. Accepts a secret reference (op://vault/item/field) or vault ID + item ID.

NameTypeReqDescription
itemIdstringItem ID to retrieve (required if secretReference is not provided).
revealbooleanIf true, include concealed field values in plaintext. Defaults to false for security.
secretReferencestringSecret reference in op://vault/item/field format. If provided, vaultId and itemId are ignored.
vaultIdstringVault ID containing the item (required if secretReference is not provided).

No output schema declared.

No examples provided.

item_list ~52

List all items in a 1Password vault, returning id, title, category, tags, and updatedAt for each. Never returns secret values.

NameTypeReqDescription
vaultIdstringyesVault ID to list items from.

No output schema declared.

No examples provided.

item_lookup ~80

Search for items within a 1Password vault by title substring. Returns item IDs, titles, categories, and vault IDs.

NameTypeReqDescription
limitintegerMaximum number of items to return (default: all).
querystringOptional substring to filter item titles (case-insensitive).
vaultIdstringyesVault ID to search within.

No output schema declared.

No examples provided.

note_create ~96

Create a Secure Note item in a 1Password vault, with optional tags and custom fields.

NameTypeReqDescription
fieldsarrayOptional custom fields to attach to the note.
notesstringyesNote body text. Pass an empty string for an empty note.
tagsarrayOptional tags for organization.
titlestringyesNote title.
vaultIdstringyesVault ID to create the note in.

No output schema declared.

No examples provided.

password_create ~150

Create a new password/login item in a 1Password vault with optional username, URL, tags, and notes.

NameTypeReqDescription
categorystringItem category. Defaults to Login.
notesstringOptional notes.
passwordstringyesPassword to store in the item.
returnSecretbooleanIf true, include the created password in the response. Defaults to false for security.
tagsarrayOptional tags for organization.
titlestringyesItem title.
urlstringOptional website URL to associate.
usernamestringUsername to store in the item.
vaultIdstringyesVault ID to create the item in.

No output schema declared.

No examples provided.

password_generate ~99

Generate a cryptographically secure random password with configurable length and character types. Uses rejection sampling for unbiased randomness.

NameTypeReqDescription
includeNumbersbooleanInclude digits (0-9). Defaults to true.
includeSymbolsbooleanInclude symbols (!@#$%^&*…). Defaults to true.
includeUppercasebooleanInclude uppercase letters. Defaults to true.
lengthintegerLength of the password. Defaults to 20.

No output schema declared.

No examples provided.

password_generate_memorable ~128

Generate a memorable passphrase from random dictionary words with optional number and symbol suffixes. Uses a ~500-word curated list for good entropy.

NameTypeReqDescription
capitalizebooleanCapitalize each word. Defaults to true.
includeNumberbooleanAppend a random number (0-99) at the end. Defaults to true.
includeSymbolbooleanAppend a random symbol at the end. Defaults to true.
separatorstringSeparator between words. Defaults to '-'.
wordCountintegerNumber of words to include. Defaults to 3.

No output schema declared.

No examples provided.

password_read ~153

Retrieve a secret from 1Password using either a secret reference (op://vault/item/field) or vault ID + item ID. Supports field selection and optional value reveal.

NameTypeReqDescription
fieldstringField id or title to read. Defaults to 'password'.
itemIdstringItem ID for item lookup (required if secretReference is not provided).
revealbooleanIf false, return metadata only without the secret value. Defaults to true.
secretReferencestringSecret reference in op://vault/item/field format. If provided, vaultId and itemId are ignored.
vaultIdstringVault ID for item lookup (required if secretReference is not provided).

No output schema declared.

No examples provided.

password_update ~116

Update (rotate) a password or concealed field on an existing 1Password item. If the target field does not exist, it will be created.

NameTypeReqDescription
fieldstringField id or title to update. Defaults to 'password'.
itemIdstringyesItem ID to update.
newPasswordstringyesNew password value.
returnSecretbooleanIf true, include the updated password in the response. Defaults to false for security.
vaultIdstringyesVault ID containing the item.

No output schema declared.

No examples provided.

vault_list ~32

List all 1Password vaults accessible to the service account. Returns vault IDs, names, descriptions, and types.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.