GitHub

social_lookup_profile

Use this when you need public profile data from a social media handle or URL. Returns structured profile data in JSON. Returns: 1. displayName and bio 2. avatarUrl 3. followerCount and followingCount

Remote axel-belfort/social-profile

Other tools also called social_lookup_profile? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Full profile URL (alternative to handle+platform, e.g. https://github.com/torvalds)"
    },
    "handle": {
      "type": "string",
      "description": "Username/handle to lookup (e.g. torvalds)"
    },
    "platform": {
      "enum": [
        "github",
        "twitter",
        "linkedin",
        "youtube"
      ],
      "type": "string",
      "description": "Platform to search on (github, twitter, linkedin, youtube)"
    }
  }
}
          

Provider

GitHub →