op-mcp
Enables to manage 1Password resources including vaults, items, documents, users, groups, and more through the 1Password CLI, exposing 65 tools for comprehensive password management via natural language.
README
op-mcp
MCP (Model Context Protocol) server for 1Password CLI, implemented in Bun TypeScript.
This is a port of the Rust op-mcp implementation to TypeScript for use with Bun runtime.
Features
- Wraps the 1Password CLI (
op) as an MCP server - Exposes 65 tools for managing 1Password resources
- Full TypeScript type safety with Zod schema validation
- Supports all major 1Password operations:
- Authentication (whoami, signin, signout)
- Account management
- Vault operations
- Item CRUD
- Document management
- User management
- Group management
- Connect server management
- Service accounts
- Events API
- Secret reading and injection
Prerequisites
- Bun runtime
- 1Password CLI (
op) installed and in PATH - 1Password account with CLI access configured
Authentication
The server supports automatic authentication via environment variables:
Option 1: Service Account Token (Recommended for automation)
export OP_SERVICE_ACCOUNT_TOKEN="your-service-account-token"
Option 2: Password-based Auto-signin
export OP_ACCOUNT="my" # Your account shorthand
export OP_PASSWORD="your-password"
When both OP_ACCOUNT and OP_PASSWORD are set, the server automatically signs in on startup.
Option 3: Default Account (Manual signin required)
export OP_ACCOUNT="my" # Your account shorthand
This sets the default account but requires you to be already signed in via op signin.
Installation
cd op-mcp.bun
bun install
Usage
Running the server
bun run start
# or
bun run src/index.ts
MCP Configuration
Add to your MCP client configuration file.
Claude Code (~/.claude.json)
Password-based auto-signin:
{
"mcpServers": {
"1password": {
"command": "bun",
"args": ["run", "/home/won/lab/config/op-mcp/op-mcp.bun/src/index.ts"],
"env": {
"OP_ACCOUNT": "my",
"OP_PASSWORD": "your-password"
}
}
}
}
Service account token:
{
"mcpServers": {
"1password": {
"command": "bun",
"args": ["run", "/home/won/lab/config/op-mcp/op-mcp.bun/src/index.ts"],
"env": {
"OP_SERVICE_ACCOUNT_TOKEN": "ops_..."
}
}
}
}
Default account (requires manual signin):
{
"mcpServers": {
"1password": {
"command": "bun",
"args": ["run", "/home/won/lab/config/op-mcp/op-mcp.bun/src/index.ts"],
"env": {
"OP_ACCOUNT": "my"
}
}
}
}
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json)
{
"mcpServers": {
"1password": {
"command": "/path/to/bun",
"args": ["run", "/path/to/op-mcp.bun/src/index.ts"],
"env": {
"OP_ACCOUNT": "my",
"OP_PASSWORD": "your-password"
}
}
}
}
Environment Variables Reference
| Variable | Description |
|---|---|
OP_SERVICE_ACCOUNT_TOKEN |
Service account token for authentication (takes priority) |
OP_ACCOUNT |
Account shorthand (e.g., my, work) |
OP_PASSWORD |
Password for auto-signin (requires OP_ACCOUNT) |
Tools
The server exposes 65 tools organized by domain:
Authentication (3 tools)
whoami- Get current user infosignin- Sign in to 1Passwordsignout- Sign out of 1Password
Account (4 tools)
account_list- List configured accountsaccount_get- Get account detailsaccount_add- Add a new accountaccount_forget- Remove an account from device
Vault (11 tools)
vault_list- List vaultsvault_get- Get vault detailsvault_create- Create a vaultvault_edit- Edit a vaultvault_delete- Delete a vaultvault_user_list- List users with vault accessvault_user_grant- Grant user access to vaultvault_user_revoke- Revoke user access from vaultvault_group_list- List groups with vault accessvault_group_grant- Grant group access to vaultvault_group_revoke- Revoke group access from vault
Item (9 tools)
item_list- List itemsitem_get- Get item detailsitem_create- Create an itemitem_edit- Edit an itemitem_delete- Delete an itemitem_move- Move item to another vaultitem_share- Create shareable linkitem_template_list- List item templatesitem_template_get- Get template details
Document (5 tools)
document_list- List documentsdocument_get- Download documentdocument_create- Upload documentdocument_edit- Replace document contentdocument_delete- Delete document
User (8 tools)
user_list- List usersuser_get- Get user detailsuser_provision- Create new useruser_confirm- Confirm pending useruser_edit- Edit useruser_suspend- Suspend useruser_reactivate- Reactivate useruser_delete- Delete user
Group (8 tools)
group_list- List groupsgroup_get- Get group detailsgroup_create- Create groupgroup_edit- Edit groupgroup_delete- Delete groupgroup_user_list- List group membersgroup_user_grant- Add user to groupgroup_user_revoke- Remove user from group
Connect (11 tools)
connect_server_list- List Connect serversconnect_server_get- Get server detailsconnect_server_create- Create serverconnect_server_edit- Edit serverconnect_server_delete- Delete serverconnect_token_list- List tokensconnect_token_create- Create tokenconnect_token_edit- Edit tokenconnect_token_delete- Delete tokenconnect_vault_grant- Grant vault accessconnect_vault_revoke- Revoke vault access
Service Account (2 tools)
service_account_create- Create service accountservice_account_ratelimit- Check rate limit
Events API (1 tool)
events_api_create- Create Events API integration
Secrets (3 tools)
secret_read- Read secret by referencesecret_inject- Inject secrets into templatesecret_run- Run command with secrets
Development
# Type check
bun run typecheck
# Build (optional)
bun run build
Testing
The project includes a comprehensive integration test suite that runs against a real 1Password account.
Prerequisites
Ensure you're authenticated before running tests:
export OP_ACCOUNT="my"
export OP_PASSWORD="your-password"
Running Tests
# Run all tests
bun test
# Run specific test suites
bun test:auth # Authentication tests
bun test:account # Account management tests
bun test:vault # Vault CRUD tests
bun test:item # Item CRUD tests
bun test:document # Document upload/download tests
bun test:user # User management tests (admin required)
bun test:group # Group management tests
bun test:connect # Connect server tests (Business/Teams required)
bun test:service # Service account tests
bun test:events # Events API tests (Business/Enterprise required)
bun test:secrets # Secret read/inject tests
Test Behavior
- Tests create resources with
op-mcp-testprefix for easy identification - Resources are cleaned up after each test suite
- Tests that require admin privileges or specific account types are automatically skipped
- A test vault named
op-mcp-test-vaultis created/reused for item and document tests
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.