Skip to main content
Glama
CloudWaddie

OSINT MCP Server

reddit_user_details

Extract and analyze Reddit user account information for open-source intelligence investigations, including profile data and activity insights.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYesReddit username

Implementation Reference

  • The tool 'reddit_user_details' is defined and implemented directly within src/index.ts, where it registers the tool with the server and executes 'redditClient.getUserDetails' as the handler logic.
    server.tool(
      "reddit_user_details",
      { username: z.string().describe("Reddit username") },
      async ({ username }) => {
        const result = await redditClient.getUserDetails(username);
        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