Skip to main content
Glama
CloudWaddie

OSINT MCP Server

fandom_user_info

Retrieve user information from Fandom platforms to support open-source intelligence investigations and security research.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYesFandom username

Implementation Reference

  • The getUserInfo method inside the FandomApiClient class handles the API request to fetch user information from Fandom.
    async getUserInfo(username: string): Promise<any> {
      try {
        const data = await this.fetch<any>("", {
          method: "GET",
        }, {
          action: "query",
          list: "users",
          ususers: username,
          usprop: "blockinfo|groups|editcount|registration|gender",
          format: "json",
        });
    
        return data.query?.users?.[0] || null;
      } catch (error) {
        if (error instanceof McpError) throw error;
        throw new McpError(ErrorCode.InternalError, `Fandom User Info error: ${(error as Error).message}`);
      }
    }
  • src/index.ts:413-420 (registration)
    Registration of the "fandom_user_info" tool in the main server file, which calls the FandomApiClient.getUserInfo method.
    server.tool(
      "fandom_user_info",
      { username: z.string().describe("Fandom username") },
      async ({ username }) => {
        const result = await fandomClient.getUserInfo(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