{"id":49369784,"url":"https://github.com/gusdeboer/random-profiles-mcp","last_synced_at":"2026-04-27T22:02:04.925Z","repository":{"id":353986015,"uuid":"1218784861","full_name":"gusdeboer/random-profiles-mcp","owner":"gusdeboer","description":"MCP server for the Random Profiles API — fake user profiles and companies for AI agents (Claude, Cursor, Windsurf). Zero-config onboarding. Powered by https://random-profiles.com.","archived":false,"fork":false,"pushed_at":"2026-04-26T14:57:26.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-26T16:27:20.547Z","etag":null,"topics":["ai","ai-tools","claude","developer-tools","fake-data","mcp","mcp-server","model-context-protocol","seed-data","test-data"],"latest_commit_sha":null,"homepage":"https://random-profiles.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gusdeboer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-23T08:04:19.000Z","updated_at":"2026-04-26T14:57:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/gusdeboer/random-profiles-mcp","commit_stats":null,"previous_names":["gusdeboer/random-profiles-mcp"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/gusdeboer/random-profiles-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusdeboer%2Frandom-profiles-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusdeboer%2Frandom-profiles-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusdeboer%2Frandom-profiles-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusdeboer%2Frandom-profiles-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gusdeboer","download_url":"https://codeload.github.com/gusdeboer/random-profiles-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusdeboer%2Frandom-profiles-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32356602,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","ai-tools","claude","developer-tools","fake-data","mcp","mcp-server","model-context-protocol","seed-data","test-data"],"created_at":"2026-04-27T22:01:57.570Z","updated_at":"2026-04-27T22:02:04.920Z","avatar_url":"https://github.com/gusdeboer.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# random-profiles-mcp\n\nMCP server for the [Random Profiles API](https://random-profiles.com) — generate fake user profiles and companies directly from AI agents like Claude.\n\n## Setup — zero config\n\nJust install the MCP server and talk to it. The first time you ask for\nprofiles, the agent will prompt you for an email once, claim a free key on\nyour behalf, cache it locally, and use it for every future request. The key\nis also emailed to you as a receipt.\n\nAdd to your Claude Code MCP config (`.mcp.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"random-profiles\": {\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"random-profiles-mcp\"]\n    }\n  }\n}\n```\n\nRestart Claude Code and ask _\"give me 5 random user profiles\"_ — the agent\nwill handle the key handshake automatically. No browser, no copy-paste.\n\nThe key is cached at `~/.random-profiles/config.json` (mode `0600`) so you\nonly do this once per machine.\n\n### Prefer to bring your own key?\n\nIf you already have an API key (or want to use a specific one for billing),\nset it via env var and skip the claim flow entirely:\n\n```json\n{\n  \"mcpServers\": {\n    \"random-profiles\": {\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"random-profiles-mcp\"],\n      \"env\": {\n        \"RANDOM_PROFILES_API_KEY\": \"rp_your_key_here\"\n      }\n    }\n  }\n}\n```\n\nThe env var takes precedence over the cached key.\n\n## Tools\n\n| Tool | Description |\n|------|-------------|\n| `claim_api_key` | Claim a free API key using an email address (response returns the key; the agent also emails a copy as a receipt). Only used on first run when no key is configured — cached afterward. |\n| `get_profiles` | Get random user profiles with filters (count, gender, country, age range, fields) |\n| `get_profile` | Get a single profile by UUID |\n| `get_companies` | Get random fake companies with filters (count, industry, country, size, fields) |\n| `get_company` | Get a single company by UUID |\n| `get_random_image` | Get a random profile photo (JPEG, optional size) |\n| `get_image` | Get a specific profile photo by UUID (JPEG, optional size) |\n| `get_usage` | Check your API key usage, tier, and daily limits |\n\n## Field Groups\n\n**Profiles**: name, email, phone, identity, bio, social, physical, job, address, financial, network, documents, vehicle, contact, digital, interests, education, photo, relationships, meta\n\n**Companies**: name, industry, size, location, contact, social, financial, tech, leadership, legal, operations, product, relationships, meta\n\nThe `relationships` group returns cross-resource UUIDs: profiles have `company_uuid` + `colleague_uuids`, companies have `employee_uuids`. Chain tools together to hydrate the graph (e.g. \"give me 5 companies, then their employees\").\n\n## Image formats\n\nBoth `get_profiles` and `get_companies` accept an optional `photo_format` / `logo_format` argument (`jpg` or `webp`). WebP is ~30% smaller than JPG with equivalent perceived quality and is supported by 96%+ of browsers. Default stays `jpg` for maximum compatibility.\n\n## Examples\n\n**Profiles**\n\n\u003e \"Give me 5 random US profiles\"\n\n\u003e \"Generate 10 female profiles between ages 25-35 from Germany\"\n\n\u003e \"Get me profiles with only name and email fields\"\n\n\u003e \"Show me a random profile photo\"\n\n**Companies**\n\n\u003e \"Give me 5 fake Technology companies from the US\"\n\n\u003e \"Generate 10 Healthcare companies with 51-200 employees\"\n\n\u003e \"Get 20 companies with only name, industry, and leadership fields\"\n\n\u003e \"Give me 3 Finance companies from the UK with a fixed seed of 42\"\n\n\u003e \"Give me 10 companies with 128px logos (for an icon grid)\"\n\nThe `logo_size` argument on `get_companies`/`get_company` picks the size variant in `meta.logo_url` — same pattern as `photo_size` on profiles. Valid values: `64`, `128`, `256`, `512`, `1024` (default).\n\n## Environment Variables\n\n| Variable | Required | Description |\n|----------|----------|-------------|\n| `RANDOM_PROFILES_API_KEY` | Yes | Your API key (get one at random-profiles.com) |\n\n## See also\n\n- [`random-profiles-types`](https://www.npmjs.com/package/random-profiles-types) — TypeScript types for the API response shapes, if you're calling the API directly from TypeScript.\n- [`random-profiles`](https://www.npmjs.com/package/random-profiles) — CLI for the same API.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgusdeboer%2Frandom-profiles-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgusdeboer%2Frandom-profiles-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgusdeboer%2Frandom-profiles-mcp/lists"}