Skip to main content
Glama

keychain_status

Check Bitwarden CLI status to verify if the vault is locked or unlocked, and view server and user information for secure password management.

Instructions

Returns Bitwarden CLI status (locked/unlocked, server, user).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The tool is registered as `.status` but is functionally equivalent to `keychain_status` in terms of providing vault status. The implementation delegates to `sdk.status()`.
    registerTool(
      `${deps.toolPrefix}.status`,
      {
        title: 'Vault Status',
        description:
          'Returns Bitwarden CLI status (locked/unlocked, server, user).',
        annotations: { readOnlyHint: true },
        inputSchema: {},
        _meta: toolMeta,
      },
      async (_input, extra) => {
        const sdk = await deps.getSdk(extra.authInfo);
        const status = await sdk.status();
        const summary =
          status &&
          typeof status === 'object' &&
          typeof (status as { summary?: unknown }).summary === 'string'
            ? String((status as { summary?: unknown }).summary)
            : 'Vault access ready.';
        return {
          structuredContent: { status },
          content: [{ type: 'text', text: summary }],
        };
      },
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/icoretech/warden-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server