Skip to content
MCP-BridgeMCP-Bridge
Security

1Password Connect MCP Config

REST API interface for 1Password Connect.

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/1password-local-connect.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "1password-local-connect": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/1password-local-connect"
      ],
      "env": {
        "1PASSWORD_CONNECT_API_KEY": "your_1password_connect_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "1password-local-connect": {
      "url": "https://mcpbridge.org/config/1password-local-connect.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "1password-local-connect": {
      "url": "https://mcpbridge.org/config/1password-local-connect.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/1password-local-connect.json to fetch programmatically.

{
  "mcpServers": {
    "1password-local-connect": {
      "command": "npx",
      "args": ["-y","@mcp/1password-local-connect"],
      "env": {
      "1PASSWORD_CONNECT_API_KEY": "your_1password_connect_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/1password-local-connect.json

Environment Variables

1PASSWORD_CONNECT_API_KEY

Replace your_1password_connect_api_key with your actual 1password connect api key

Endpoints

GET/activity

Retrieve a list of API Requests that have been made.

GET/health

Get state of the server and its dependencies.

GET/heartbeat

Ping the server for liveness

GET/metrics

Query server for exposed Prometheus metrics

GET/vaults

Get all Vaults

GET/vaults/{vaultUuid}

Get Vault details and metadata

GET/vaults/{vaultUuid}/items

Get all items for inside a Vault

POST/vaults/{vaultUuid}/items

Create a new Item

GET/vaults/{vaultUuid}/items/{itemUuid}

Get the details of an Item

PUT/vaults/{vaultUuid}/items/{itemUuid}

Update an Item