Tool tree
AgentRQ keeps you in the loop while Claude Code and ACP agents work autonomously. Agents assign tasks, you reply from anywhere — all via MCP, in real-time.
page: Every page
listPagesAnswer
List the pages of agentrq.com with their title, description and URL, 50 at a time. Filter by category — "pages" (home, contact, legal), "docs", "features", "blog" or "glossary" — or leave it empty for every page. Pass pagination.nextStartIndex back as startIndex for the next batch.
View tool JSON
{
"name": "listPages",
"kind": "answer",
"impl": "imperative",
"description": "List the pages of agentrq.com with their title, description and URL, 50 at a time. Filter by category — \"pages\" (home, contact, legal), \"docs\", \"features\", \"blog\" or \"glossary\" — or leave it empty for every page. Pass pagination.nextStartIndex back as startIndex for the next batch.",
"inputSchema": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "A category to list, or empty for all pages."
},
"startIndex": {
"type": "integer",
"minimum": 0,
"description": "Position of the first page to return. Defaults to 0."
}
},
"required": []
},
"page": "/"
}lookupPageAnswer
Read an agentrq.com page as Markdown, with every link and image as an absolute URL. Leave url empty to read the page the user is on.
View tool JSON
{
"name": "lookupPage",
"kind": "answer",
"impl": "imperative",
"description": "Read an agentrq.com page as Markdown, with every link and image as an absolute URL. Leave url empty to read the page the user is on.",
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "An agentrq.com page: an absolute URL such as \"https://agentrq.com/docs/tasks\" or a path such as \"/docs/tasks\"."
}
},
"required": []
},
"page": "/"
}navigateAction
Take the user to an agentrq.com page. Only pages that listPages returns can be opened; a "#section" on the URL is kept.
View tool JSON
{
"name": "navigate",
"kind": "act",
"impl": "imperative",
"description": "Take the user to an agentrq.com page. Only pages that listPages returns can be opened; a \"#section\" on the URL is kept.",
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "An agentrq.com page: an absolute URL such as \"https://agentrq.com/docs/tasks\" or a path such as \"/docs/tasks\"."
}
},
"required": [
"url"
]
},
"page": "/"
}