Skip to main content
Glama
CloudWaddie

OSINT MCP Server

web_search

Search the web for information using queries to gather data for open-source intelligence research and security analysis.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query
limitNoNumber of results to return

Implementation Reference

  • The implementation of the 'web_search' tool using the exaClient.
    server.tool(
      "web_search",
      {
        query: z.string().describe("Search query"),
        limit: z.number().optional().default(5).describe("Number of results to return"),
      },
      async ({ query, limit }) => {
        const result = await exaClient.search(query, limit);
        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