check_socials
Verify username availability across social media and developer platforms to secure consistent branding. Returns status with confidence levels for GitHub, Twitter, Reddit, npm, and other platforms.
Instructions
Check if a username is available on social media and developer platforms.
Supports 10 platforms with varying confidence levels:
HIGH: GitHub, npm, PyPI, Reddit, Twitter/X (reliable public APIs)
MEDIUM: YouTube, ProductHunt (status code based)
LOW: Instagram, LinkedIn, TikTok (block automated checks - verify manually)
Returns availability status with confidence indicator.
Example:
check_socials("vibecoding") → checks GitHub, Twitter, Reddit, npm
check_socials("myapp", ["github", "npm", "pypi"]) → developer platforms only
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The username/handle to check. | |
| platforms | No | Platforms to check. Defaults to ['github', 'twitter', 'reddit', 'npm']. |