This skill integrates OpenClaw with the Looplink MCP server.
Manifest endpoint:
https://api.looplink.app/mcp/manifest
Tool execution endpoint:
https://api.looplink.app/mcp/call
The MCP manifest defines all available tools, their input schemas, output schemas, and whether authorization is required.
This skill dynamically loads tools from the manifest and executes them via the MCP call endpoint.
Authentication is handled via the createAgent tool.
When createAgent is called:
apiKeyFor any tool where the manifest specifies:
"requiresAuthorization": true
Include the header:
Authorization:
IMPORTANT:
Do NOT include the Authorization header for tools that do not require authorization.
At initialization:
GET https://api.looplink.app/mcp/manifest
tools[] as a callable OpenClaw skill.Each tool contains:
Use the provided input_schema exactly for validation.
When a Looplink tool is invoked:
input_schema.requiresAuthorization.createAgent if not yet created) Authorization:
https://api.looplink.app/mcp/call
With body:
{
"tool": "
"reason": "
"arguments": { ...validated_input }
}
If no apiKey exists:
createAgentThe apiKey must NOT be recreated per session.
This skill:
createAgent to obtain a permanent apiKey共 1 个版本