get_by_category
Pack: emojihub · Endpoint: https://gateway.pipeworx.io/emojihub/mcp
Search emojis by category (e.g., “smileys-and-people”, “food-and-drink”, “travel-and-places”, “symbols”). Returns matching emojis with names and groups.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
category | string | yes | The emoji category slug, e.g. “smileys-and-people”, “animals-and-nature”, “food-and-drink”. |
Example call
Arguments
{
"category": "smileys-and-people"
}
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":"get_by_category","arguments":{"category":"smileys-and-people"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_by_category', {
"category": "smileys-and-people"
});
More examples
{
"category": "food-and-drink"
}
Response shape
Always returns: category, count, emojis
| Field | Type | Description |
|---|---|---|
category | string | The requested emoji category |
count | integer | Number of emojis in the category |
emojis | array | Array of emojis in the category |
Full JSON Schema
{
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "The requested emoji category"
},
"count": {
"type": "integer",
"description": "Number of emojis in the category"
},
"emojis": {
"type": "array",
"items": {
"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"
]
},
"description": "Array of emojis in the category"
}
},
"required": [
"category",
"count",
"emojis"
]
}
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.