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://mcp-bridge.pages.dev/config/1password-local-connect.jsonConfiguration JSON
Use curl https://mcp-bridge.pages.dev/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
Cursor
Go to Cursor Settings → MCP Servers → Add with the JSON above.
CLI / curl
Fetch the config programmatically:
curl https://mcp-bridge.pages.dev/config/1password-local-connect.jsonEnvironment Variables
1PASSWORD_CONNECT_API_KEYReplace your_1password_connect_api_key with your actual 1password connect api key
Endpoints
GET
/activityRetrieve a list of API Requests that have been made.
GET
/healthGet state of the server and its dependencies.
GET
/heartbeatPing the server for liveness
GET
/metricsQuery server for exposed Prometheus metrics
GET
/vaultsGet all Vaults
GET
/vaults/{vaultUuid}Get Vault details and metadata
GET
/vaults/{vaultUuid}/itemsGet all items for inside a Vault
POST
/vaults/{vaultUuid}/itemsCreate a new Item
GET
/vaults/{vaultUuid}/items/{itemUuid}Get the details of an Item
PUT
/vaults/{vaultUuid}/items/{itemUuid}Update an Item