Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Web reading and searching via Jina AI APIs. Fetch clean markdown from URLs (r.jina.ai), web search (s.jina.ai), or deep multi-step research (DeepSearch). --- name: jina description: Web reading and searching via Jina AI APIs. Fetch clean markdown from URLs (r.jina.ai), web search (s.jina.ai), or deep multi-step research (DeepSearch). homepage: "https://github.com/adhishthite/jina-ai-skill" metadata: { "clawdbot": { "emoji": "๐", "requires": { "env": ["JINA_API_KEY"] }, "primaryEnv": "JINA_API_KEY", "files": ["scripts/*"], }, } --- Jina AI โ Reader, Search & DeepSearc
clawhub skill install skills:adhishthite:jina-aiOverall rank
#62
Adoption
No public adoption signal
Trust
Unknown
Freshness
Feb 25, 2026
Freshness
Last checked Feb 25, 2026
Best For
jina is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Web reading and searching via Jina AI APIs. Fetch clean markdown from URLs (r.jina.ai), web search (s.jina.ai), or deep multi-step research (DeepSearch). --- name: jina description: Web reading and searching via Jina AI APIs. Fetch clean markdown from URLs (r.jina.ai), web search (s.jina.ai), or deep multi-step research (DeepSearch). homepage: "https://github.com/adhishthite/jina-ai-skill" metadata: { "clawdbot": { "emoji": "๐", "requires": { "env": ["JINA_API_KEY"] }, "primaryEnv": "JINA_API_KEY", "files": ["scripts/*"], }, } --- Jina AI โ Reader, Search & DeepSearc Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Adhishthite
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
clawhub skill install skills:adhishthite:jina-aiSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Adhishthite
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
curl -s "https://r.jina.ai/https://example.com" \ -H "Authorization: Bearer $JINA_API_KEY" \ -H "Accept: text/plain"
bash
curl -s "https://r.jina.ai/https://example.com" \ -H "Authorization: Bearer $JINA_API_KEY" \ -H "Accept: application/json"
bash
# Plain text output curl -s "https://r.jina.ai/https://example.com" \ -H "Authorization: Bearer $JINA_API_KEY" \ -H "Accept: text/plain" # JSON output (includes url, title, content, timestamp) curl -s "https://r.jina.ai/https://example.com" \ -H "Authorization: Bearer $JINA_API_KEY" \ -H "Accept: application/json"
bash
curl -s "https://r.jina.ai/https://example.com/article" \ -H "Authorization: Bearer $JINA_API_KEY" \ -H "X-Retain-Images: none" \ -H "X-Remove-Selector: nav, footer, .sidebar, .ads" \ -H "Accept: text/plain"
bash
curl -s "https://r.jina.ai/https://example.com" \ -H "Authorization: Bearer $JINA_API_KEY" \ -H "X-Target-Selector: article.main-content"
bash
curl -s "https://r.jina.ai/https://example.com/paper.pdf" \ -H "Authorization: Bearer $JINA_API_KEY" \ -H "Accept: text/plain"
Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Web reading and searching via Jina AI APIs. Fetch clean markdown from URLs (r.jina.ai), web search (s.jina.ai), or deep multi-step research (DeepSearch). --- name: jina description: Web reading and searching via Jina AI APIs. Fetch clean markdown from URLs (r.jina.ai), web search (s.jina.ai), or deep multi-step research (DeepSearch). homepage: "https://github.com/adhishthite/jina-ai-skill" metadata: { "clawdbot": { "emoji": "๐", "requires": { "env": ["JINA_API_KEY"] }, "primaryEnv": "JINA_API_KEY", "files": ["scripts/*"], }, } --- Jina AI โ Reader, Search & DeepSearc
Web reading and search powered by Jina AI. Requires JINA_API_KEY environment variable.
Trust & Privacy: By using this skill, URLs and queries are transmitted to Jina AI (jina.ai). Only install if you trust Jina with your data.
Model Invocation: This skill may be invoked autonomously by the model without explicit user trigger (standard for integration skills). If you prefer manual-only invocation, disable model invocation in your OpenClaw skill settings.
Get your API key: https://jina.ai/ โ Dashboard โ API Keys
This skill makes HTTP requests to the following external endpoints only:
| Endpoint | URL Pattern | Purpose |
|----------|-------------|---------|
| Reader API | https://r.jina.ai/{url} | Sends URL content request to Jina for conversion to markdown |
| Search API | https://s.jina.ai/{query} | Sends search query to Jina for web search results |
| DeepSearch API | https://deepsearch.jina.ai/v1/chat/completions | Sends research question to Jina for multi-step research |
No other external network calls are made by this skill.
JINA_API_KEY is transmitted to Jina's servers (via Authorization header)JINA_API_KEY environment variable; no other env vars are readX-Set-Cookie header is available for authenticated content but is opt-in only| Endpoint | Base URL | Purpose |
|----------|----------|---------|
| Reader | https://r.jina.ai/{url} | Convert any URL โ clean markdown |
| Search | https://s.jina.ai/{query} | Web search with LLM-friendly results |
| DeepSearch | https://deepsearch.jina.ai/v1/chat/completions | Multi-step research agent |
All endpoints accept Authorization: Bearer $JINA_API_KEY.
r.jina.ai)Fetches any URL and returns clean, LLM-friendly content. Works with web pages, PDFs, and JS-heavy sites.
# Plain text output
curl -s "https://r.jina.ai/https://example.com" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "Accept: text/plain"
# JSON output (includes url, title, content, timestamp)
curl -s "https://r.jina.ai/https://example.com" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "Accept: application/json"
Or use the helper script: scripts/jina-reader.sh <url> [--json]
| Header | Query Param | Values | Default | Description |
|--------|-------------|--------|---------|-------------|
| X-Respond-With | respondWith | content, markdown, html, text, screenshot, pageshot, vlm, readerlm-v2 | content | Output format |
| X-Retain-Images | retainImages | none, all, alt, all_p, alt_p | all | Image handling |
| X-Retain-Links | retainLinks | none, all, text, gpt-oss | all | Link handling |
| X-With-Generated-Alt | withGeneratedAlt | true/false | false | Auto-caption images |
| X-With-Links-Summary | withLinksSummary | true | - | Append links section |
| X-With-Images-Summary | withImagesSummary | true/false | false | Append images section |
| X-Token-Budget | tokenBudget | number | - | Max tokens for response |
| Header | Query Param | Description |
|--------|-------------|-------------|
| X-Target-Selector | targetSelector | Only extract matching elements |
| X-Wait-For-Selector | waitForSelector | Wait for elements before extracting |
| X-Remove-Selector | removeSelector | Remove elements before extraction |
| Header | Query Param | Description |
|--------|-------------|-------------|
| X-Timeout | timeout | Page load timeout (1-180s) |
| X-Respond-Timing | respondTiming | When page is "ready" (html, network-idle, etc.) |
| X-No-Cache | noCache | Bypass cached content |
| X-Proxy | proxy | Country code or auto for proxy |
| X-Set-Cookie | setCookies | Forward cookies for authenticated content |
# Extract main content, remove navigation elements
curl -s "https://r.jina.ai/https://example.com/article" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "X-Retain-Images: none" \
-H "X-Remove-Selector: nav, footer, .sidebar, .ads" \
-H "Accept: text/plain"
# Extract specific section
curl -s "https://r.jina.ai/https://example.com" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "X-Target-Selector: article.main-content"
# Parse a PDF
curl -s "https://r.jina.ai/https://example.com/paper.pdf" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "Accept: text/plain"
# Wait for dynamic content
curl -s "https://r.jina.ai/https://spa-app.com" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "X-Wait-For-Selector: .loaded-content" \
-H "X-Respond-Timing: network-idle"
s.jina.ai)Web search returning LLM-friendly results with full page content.
# Plain text
curl -s "https://s.jina.ai/your+search+query" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "Accept: text/plain"
# JSON
curl -s "https://s.jina.ai/your+search+query" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "Accept: application/json"
Or use the helper script: scripts/jina-search.sh "<query>" [--json]
| Param | Values | Description |
|-------|--------|-------------|
| site | domain | Limit to specific site |
| type | web, images, news | Search type |
| num / count | 0-20 | Number of results |
| gl | country code | Geo-location (e.g. us, in) |
| filetype | extension | Filter by file type |
| intitle | string | Must appear in title |
All Reader parameters also work on search results.
# Site-scoped search
curl -s "https://s.jina.ai/OpenAI+GPT-5?site=reddit.com" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "Accept: text/plain"
# News search
curl -s "https://s.jina.ai/latest+AI+news?type=news&num=5" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "Accept: application/json"
# Search for PDFs
curl -s "https://s.jina.ai/machine+learning+survey?filetype=pdf&num=5" \
-H "Authorization: Bearer $JINA_API_KEY"
Multi-step research agent that combines search + reading + reasoning. OpenAI-compatible chat completions API.
curl -s "https://deepsearch.jina.ai/v1/chat/completions" \
-H "Authorization: Bearer $JINA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "jina-deepsearch-v1",
"messages": [{"role": "user", "content": "Your research question here"}],
"stream": false
}'
Or use the helper script: scripts/jina-deepsearch.sh "<question>"
Use for complex research requiring multiple sources and reasoning chains.
| Script | Purpose |
|--------|---------|
| scripts/jina-reader.sh | Read any URL as markdown |
| scripts/jina-search.sh | Web search |
| scripts/jina-deepsearch.sh | Deep multi-step research |
| scripts/jina-reader.py | Python reader (no deps beyond stdlib) |
| Need | Use |
|------|-----|
| Fetch a URL as markdown | Reader โ better than web_fetch for JS-heavy sites |
| Web search | Search โ LLM-friendly results |
| Complex multi-source research | DeepSearch |
| Parse a PDF from URL | Reader โ pass PDF URL directly |
| Screenshot a page | Reader with X-Respond-With: screenshot |
| Extract structured data | Reader with jsonSchema param |
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T00:15:02.394Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Adhishthite",
"href": "https://github.com/adhishthite/jina-ai-skill",
"sourceUrl": "https://github.com/adhishthite/jina-ai-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adhishthite-jina-ai/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to jina and adjacent AI workflows.