get_by_group
Pack: emojihub · Endpoint: https://gateway.pipeworx.io/emojihub/mcp
Search emojis by group (e.g., “face-positive”, “face-negative”, “animals-mammal”, “hand-fingers-open”). Returns matching emojis with names and categories.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
group | string | yes | The emoji group slug, e.g. “face-positive”, “face-negative”, “animals-mammal”. |
Example call
Arguments
{
"group": "face-positive"
}
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_group","arguments":{"group":"face-positive"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_by_group', {
"group": "face-positive"
});
More examples
{
"group": "animals-mammal"
}
Response shape
Always returns: group, count, emojis
| Field | Type | Description |
|---|---|---|
group | string | The requested emoji group |
count | integer | Number of emojis in the group |
emojis | array | Array of emojis in the group |
Full JSON Schema
{
"type": "object",
"properties": {
"group": {
"type": "string",
"description": "The requested emoji group"
},
"count": {
"type": "integer",
"description": "Number of emojis in the group"
},
"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 group"
}
},
"required": [
"group",
"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.