Skip to content

Commit 2714844

Browse files
committed
docs: clarify Xquik tool runtime surface
1 parent dc84c99 commit 2714844

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

mcp-registry/servers/xquik.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@
4949
"tools": [
5050
{
5151
"name": "explore",
52-
"description": "Search the Xquik API catalog before making live API calls. Runs against an in-memory catalog only, does not make network calls, and is limited by a 60 second execution timeout.",
52+
"description": "Search the Xquik API catalog before making live API calls. Runs against an in-memory catalog only, does not make network calls, and is limited by a 60 second execution timeout. Runtime surface: standard JavaScript built-ins plus read-only spec.endpoints.",
5353
"inputSchema": {
5454
"type": "object",
5555
"properties": {
5656
"code": {
5757
"type": "string",
58-
"description": "JavaScript async arrow function for inputSchema.properties.code that filters the Xquik endpoint catalog. No filesystem, process, credential, or outbound network access is available."
58+
"description": "JavaScript async arrow function for inputSchema.properties.code that filters the Xquik endpoint catalog. Available globals are standard JavaScript built-ins and spec.endpoints. No filesystem, process, import, credential, fetch, or outbound network access is available."
5959
}
6060
},
6161
"required": [
@@ -65,13 +65,13 @@
6565
},
6666
{
6767
"name": "xquik",
68-
"description": "Execute authenticated Xquik API calls for X/Twitter data, publishing, monitors, events, webhooks, and account workflows. Runs in a restricted server-side sandbox with a 60 second execution timeout.",
68+
"description": "Execute authenticated Xquik API calls for X/Twitter data, publishing, monitors, events, webhooks, and account workflows. Runs in a restricted server-side JavaScript runtime with a 60 second execution timeout. Runtime surface: standard JavaScript built-ins, spec.endpoints, and xquik.request.",
6969
"inputSchema": {
7070
"type": "object",
7171
"properties": {
7272
"code": {
7373
"type": "string",
74-
"description": "JavaScript async arrow function for inputSchema.properties.code that calls xquik.request(path, options). Authentication is injected by the server; code cannot read credentials, access the filesystem or process, or call arbitrary network hosts."
74+
"description": "JavaScript async arrow function for inputSchema.properties.code that calls xquik.request(path, options). Authentication is injected by the server. Available globals are standard JavaScript built-ins, spec.endpoints, and xquik.request. Code cannot read credentials, access the filesystem or process, import modules, call fetch, or call arbitrary network hosts."
7575
}
7676
},
7777
"required": [

0 commit comments

Comments
 (0)