script
Pack: iso-codes · Endpoint: https://gateway.pipeworx.io/iso-codes/mcp
“Writing system code for [X]” / “ISO 15924 for [Latin / Cyrillic / Han]” / “script code lookup” — writing system record (ISO 15924) by name or 4-letter code. Use for typography, font selection, i18n.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes |
Example call
Arguments
{
"query": "Latin"
}
curl
curl -X POST https://gateway.pipeworx.io/iso-codes/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"script","arguments":{"query":"Latin"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('script', {
"query": "Latin"
});
More examples
{
"query": "Latn"
}
Response shape
| Field | Type | Description |
|---|---|---|
alpha_4 | string | ISO 15924 four-letter code |
numeric | string | ISO 15924 numeric code |
name | string | Script name |
Full JSON Schema
{
"type": [
"object",
"null"
],
"properties": {
"alpha_4": {
"type": "string",
"description": "ISO 15924 four-letter code"
},
"numeric": {
"type": "string",
"description": "ISO 15924 numeric code"
},
"name": {
"type": "string",
"description": "Script name"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"iso-codes": {
"url": "https://gateway.pipeworx.io/iso-codes/mcp"
}
}
}
See Getting Started for client-specific install steps.