Skip to main content
Glama
CloudWaddie

OSINT MCP Server

github_user_repos

Retrieve GitHub user repositories to analyze development activity and project contributions for open-source intelligence gathering.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYesGitHub username

Implementation Reference

  • Implementation of the logic for fetching GitHub user repositories.
    async getUserRepos(username: string): Promise<any[]> {
      try {
        return await this.fetch<any[]>(`users/${username}/repos`, {
          method: "GET",
          headers: this.getHeaders(),
        }, {
          per_page: 100,
          sort: "updated"
        });
  • src/index.ts:364-373 (registration)
    Registration of the github_user_repos tool in the MCP server.
    server.tool(
      "github_user_repos",
      { username: z.string().describe("GitHub username") },
      async ({ username }) => {
        const result = await ghClient.getUserRepos(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