Skip to main content
Glama

keychain_get_exposed

Check if passwords or credentials have been exposed in data breaches by searching with a specific term to identify security risks.

Instructions

Check exposed status by search term (bw get exposed).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
termYes

Implementation Reference

  • Implementation of the 'get_exposed' tool, which checks Bitwarden vault item exposure status.
      `${deps.toolPrefix}.get_exposed`,
      {
        title: 'Get Exposed',
        description: 'Check exposed status by search term (bw get exposed).',
        annotations: { readOnlyHint: true },
        inputSchema: {
          term: z.string(),
        },
        _meta: toolMeta,
      },
      async (input, extra) => {
        const sdk = await deps.getSdk(extra.authInfo);
        const exposed = await sdk.getExposed(input);
        return {
          structuredContent: toolResult(
            'exposed',
            exposed.value,
            exposed.revealed,
          ),
          content: [{ type: 'text', text: 'OK' }],
        };
      },
    );

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