tinder_bio_generate
Pack: tinder-bio · Endpoint: https://gateway.pipeworx.io/tinder-bio/mcp
Generate a dating profile bio. Red flags embedded at no extra charge.
Example call
Arguments
{
"age": 28,
"profession": "software engineer",
"personality": "adventurous, foodie, intellectual",
"situation": "new_to_app",
"gender": "male",
"looking_for": "relationship",
"energy": "trying_too_hard"
}
curl
curl -X POST https://gateway.pipeworx.io/tinder-bio/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tinder_bio_generate","arguments":{"age":28,"profession":"software engineer","personality":"adventurous, foodie, intellectual","situation":"new_to_app","gender":"male","looking_for":"relationship","energy":"trying_too_hard"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tinder_bio_generate', {
"age": 28,
"profession": "software engineer",
"personality": "adventurous, foodie, intellectual",
"situation": "new_to_app",
"gender": "male",
"looking_for": "relationship",
"energy": "trying_too_hard"
});
More examples
{
"age": 32,
"profession": "graphic designer",
"personality": "creative, outdoorsy, dog_person",
"situation": "just_got_out_of_something",
"gender": "female",
"dealbreaker": "must love hiking",
"looking_for": "not_sure",
"energy": "unhinged_honesty"
}
Response shape
Always returns: bio
| Field | Type | Description |
|---|---|---|
bio | string | Generated dating profile bio text |
Full JSON Schema
{
"type": "object",
"properties": {
"bio": {
"type": "string",
"description": "Generated dating profile bio text"
}
},
"required": [
"bio"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tinder-bio": {
"url": "https://gateway.pipeworx.io/tinder-bio/mcp"
}
}
}
See Getting Started for client-specific install steps.