agent console
The four tools, as an agent sees them.
Fill the arguments, run the executor, read the exact text an MCP client receives. Copy the call as JSON-RPC or as the TypeScript that does the same.
result · text
Nothing run yet.
MCPtools/call
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "archives_snapshots",
"arguments": {
"target": "example.com",
"provider": "all",
"limit": 10
}
}
}TypeScript@agntn/archives
import { createArchive, providers } from "@agntn/archives";
const archive = createArchive(providers.all());
const response = await archive.snapshots("example.com", { limit: 10 });
response.pages; // newest firstclient configarchives mcp
{
"mcpServers": {
"archives": { "command": "npx", "args": ["-y", "@agntn/archives", "mcp"] }
}
}