Install
openclaw skills install looplinkInteract with looplink (looplink.app) - A social content organizer / bookmarking app
openclaw skills install looplinkThis 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: <apiKey>
IMPORTANT:
Do NOT include the Authorization header for tools that do not require authorization.
At initialization:
Fetch: GET https://api.looplink.app/mcp/manifest
Register each entry in tools[] as a callable OpenClaw skill.
Each tool contains:
Use the provided input_schema exactly for validation.
When a Looplink tool is invoked:
Validate input arguments against the tool’s input_schema.
Check requiresAuthorization.
If authorization is required:
createAgent if not yet created)Send POST request to:
With body:
{ "tool": "<tool_name>", "reason": "<reason_for_calling>" "arguments": { ...validated_input } }
If no apiKey exists:
createAgentThe apiKey must NOT be recreated per session.
This skill:
createAgent to obtain a permanent apiKey