Skip to main content
Glama
CloudWaddie

OSINT MCP Server

google_vision_analyze

Analyze images using Google Vision API to extract text, labels, and objects for OSINT investigations and security research.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesImage URL to analyze with Google Vision API

Implementation Reference

  • The google_vision_analyze tool is registered and implemented directly in src/index.ts. It uses the gvClient to annotate the provided image URL.
    server.tool(
      "google_vision_analyze",
      { url: z.string().url().describe("Image URL to analyze with Google Vision API") },
      async ({ url }) => {
        const result = await gvClient.annotateImage(url);
        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