Provides a bridge for scripts and AI agents to interact with a self-hosted Vaultwarden instance.
概览
What is MCP Vaultwarden Connector?
MCP Vaultwarden Connector is a server that provides a bridge for scripts and AI agents to interact with a self-hosted Vaultwarden instance, simplifying the automation of secret management.
How to use MCP Vaultwarden Connector?
To use the connector, install the Bitwarden CLI, then run the server using npx mcp-vaultwarden-server with the necessary environment variables set for your Vaultwarden instance.
Key features of MCP Vaultwarden Connector?
- Automatic session management for Vaultwarden.
- Simple API functions like
get_secretandlist_secrets. - Conflict management with locking mechanisms.
- Complete API support for CRUD operations on secrets.
Use cases of MCP Vaultwarden Connector?
- Automating secret retrieval for applications.
- Integrating with AI agents for secure data handling.
- Managing secrets in CI/CD pipelines.
FAQ from MCP Vaultwarden Connector?
- What is required to run this server?
You need to have the Bitwarden CLI installed and accessible in your PATH.
- Is it secure to use?
Yes, it uses the official Bitwarden CLI for cryptographic operations, but ensure to manage your environment variables securely.
- Can I contribute to this project?
Yes, contributions are welcome! You can fork the project and submit a pull request.
服务器配置
{
"mcpServers": {
"vaultwarden": {
"command": "npx",
"args": [
"mcp-vaultwarden-server"
],
"env": {
"BITWARDEN_HOST": "https://your-vaultwarden-instance.com",
"BW_CLIENTID": "user.xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"BW_CLIENTSECRET": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"BW_MASTER_PASSWORD": "your-master-password"
}
}
}
}