MCP pour interagir avec Vaultwarden via la CLI Bitwarden.
MCP pour interagir avec Vaultwarden via la CLI Bitwarden. The mcp vaultwarden mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 7 defined tools rather than through you.
Un serveur MCP (Model-Context-Protocol) qui expose une interface simple et robuste pour interagir avec une instance Vaultwarden auto-hébergée. Il agit comme un wrapper autour de la CLI officielle de Bitwarden (bw), permettant à des agents IA ou des scripts d'automatisation de gérer des secrets de manière programmatique.
Everything the assistant can do here goes through one of these:
get_secret — The get_secret tool exposed by this serverlist_secrets — The list_secrets tool exposed by this serverget_secret_template — The get_secret_template tool exposed by this servercreate_secret — The create_secret tool exposed by this serverupdate_secret — The update_secret tool exposed by this serverdelete_secret — The delete_secret tool exposed by this serversync — Force la synchronisation du coffre local avec le serveur distantSetup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
You will need 4 environment variables: BITWARDEN_HOST, BW_CLIENTID, BW_CLIENTSECRET, BW_MASTER_PASSWORD. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Vaultwarden's toolset — get_secret, list_secrets, get_secret_template and 4 more — is a fair guide to whether it matches your workflow. It is maintained by fkom13; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| get_secret | The get_secret tool exposed by this server. |
| list_secrets | The list_secrets tool exposed by this server. |
| get_secret_template | The get_secret_template tool exposed by this server. |
| create_secret | The create_secret tool exposed by this server. |
| update_secret | The update_secret tool exposed by this server. |
| delete_secret | The delete_secret tool exposed by this server. |
| sync | Force la synchronisation du coffre local avec le serveur distant. |
{
"mcpServers": {
"vaultwarden": {
"command": "npx",
"args": [
"mcp-vaultwarden-server"
],
"env": {
"BITWARDEN_HOST": "https://votre-instance.vaultwarden.com",
"BW_CLIENTID": "user.xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"BW_CLIENTSECRET": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"BW_MASTER_PASSWORD": "votre-mot-de-passe-maitre"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| BITWARDEN_HOST | Endpoint or connection string the server talks to. | Optional |
| BW_CLIENTID | Configuration value read at startup. | Optional |
| BW_CLIENTSECRET | Credential the server authenticates with. | Yes |
| BW_MASTER_PASSWORD | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.