Skip to main content
Glama
CloudWaddie

OSINT MCP Server

paste_search

Search public paste sites for specific text to identify exposed credentials, code snippets, or sensitive information using open-source intelligence.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesQuery to search for in public pastes

Implementation Reference

  • The tool 'paste_search' is registered and implemented directly in src/index.ts. It takes a 'query' string as input and calls 'threatClient.searchPastes(query)' to perform the search.
    server.tool(
      "paste_search",
      { query: z.string().describe("Query to search for in public pastes") },
      async ({ query }) => {
        const result = await threatClient.searchPastes(query);
        return {
          content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
        };
      }
    );

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/CloudWaddie/osint-mcp'

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