random_emoji
Pack: emojihub · Endpoint: https://gateway.pipeworx.io/emojihub/mcp
Get a random emoji with its character, name, category, and group. Use when you need an unpredictable emoji for variety or surprise elements.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/emojihub/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"random_emoji","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('random_emoji', {});
Response shape
Always returns: name, category, group, htmlCode, unicode
| Field | Type | Description |
|---|---|---|
name | string | The emoji name |
category | string | The emoji category |
group | string | The emoji group |
htmlCode | array | HTML code representations of the emoji |
unicode | array | Unicode representations of the emoji |
Full JSON Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The emoji name"
},
"category": {
"type": "string",
"description": "The emoji category"
},
"group": {
"type": "string",
"description": "The emoji group"
},
"htmlCode": {
"type": "array",
"items": {
"type": "string"
},
"description": "HTML code representations of the emoji"
},
"unicode": {
"type": "array",
"items": {
"type": "string"
},
"description": "Unicode representations of the emoji"
}
},
"required": [
"name",
"category",
"group",
"htmlCode",
"unicode"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"emojihub": {
"url": "https://gateway.pipeworx.io/emojihub/mcp"
}
}
}
See Getting Started for client-specific install steps.