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
Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations. Skill: baidu scholar search Owner: jlpJavaWayUp Summary: Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-04T14:57:27.413Z | user - Initial release of Baidu Scholar Search skill. - Search for Chinese and English academic lite
clawhub skill install kn77kbjpenv5qx583b5cas9tx980fmxt:baidu-scholar-searchOverall rank
#62
Adoption
2.5K downloads
Trust
Unknown
Freshness
Feb 28, 2026
Freshness
Last checked Feb 28, 2026
Best For
baidu scholar search 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
Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations. Skill: baidu scholar search Owner: jlpJavaWayUp Summary: Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-04T14:57:27.413Z | user - Initial release of Baidu Scholar Search skill. - Search for Chinese and English academic lite Capability contract not published. No trust telemetry is available yet. 2.5K downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 28, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
1.0.0
Install & run
clawhub skill install kn77kbjpenv5qx583b5cas9tx980fmxt:baidu-scholar-searchSetup 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
Clawhub
Protocol compatibility
OpenClaw
Latest release
1.0.0
Adoption signal
2.5K downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
2
Examples
4
Snippets
0
Languages
Unknown
bash
curl -XGET 'https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=人工智能&enable_abstract=true' \ -H 'Authorization: Bearer API_KEY'
bash
curl -XGET 'https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=人工智能&enable_abstract=true' \ -H 'Authorization: Bearer API_KEY'
bash
curl -XGET "https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=$WD&pageNum=$pageNum&enable_abstract=$enable_abstract" -H "Authorization: Bearer $BAIDU_API_KEY"
bash
#!/bin/bash
# Baidu Scholar Search Skill Implementation
set -e
# Check if required environment variable is set
if [ -z "$BAIDU_API_KEY" ]; then
echo '{"error": "BAIDU_API_KEY environment variable not set"}'
exit 1
fi
WD="$1"
if [ -z "$wd" ]; then
echo '{"error": "Missing wd parameter"}'
exit 1
fi
pageNum="$2"
if [ -z "$pageNum" ]; then
pageNum=0
fi
enable_abstract="$3"
if [ -z "$pageNum" ]; then
enable_abstract=false
fi
curl -XGET "https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=$WD&pageNum=$pageNum&enable_abstract=$enable_abstract" -H "Authorization: Bearer $BAIDU_API_KEY"SKILL.md
---
name: baidu-scholar-search
description: Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations.
homepage: https://xueshu.baidu.com/
metadata: { "openclaw": { "emoji": "🔬", "requires": { "bins": ["curl"] } } }
---
# Baidu Scholar Search
Based on the keywords entered by the user, search for both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations
## Setup
1. **API Key:** Ensure the BAIDU_API_KEY environment variable is set with your valid API key.
2. **Environment:** The API key should be available in the runtime environment.
## API table
| name | path | description |
|-------------|---------------------------------|---------------------------------------|
|scholar_search|/v2/tools/baidu_scholar/search|Based on the keywords entered, search for both Chinese and English literature |
## Workflow
1. The script makes a GET request to the Baidu Scholar Search API
2. The API returns structured search results with abstract, keyword, paperId, title etc. about a list of literature
## Scholar Search API
### Parameters
- `wd`: The search keywords(required,e.g. 'machine learning')
- `pageNum`: page num (default: 0)
- `enable_abstract`: whether to enable abstract (default: false), if true return the abstract of the literature
### Example Usage
```bash
curl -XGET 'https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=人工智能&enable_abstract=true' \
-H 'Authorization: Bearer API_KEY'
```
## EXEC scripts
```bash
#!/bin/bash
# Baidu Scholar Search Skill Implementation
set -e
# Check if required environment variable is set
if [ -z "$BAIDU_API_KEY" ]; then
echo '{"error": "BAIDU_API_KEY environment variable not set"}'
exit 1
fi
WD="$1"
if [ -z "$wd" ]; then
echo '{"error": "Missing wd parameter"}'
exit 1
fi
pageNum="$2"
if [ -z "$pageNum" ]; then
pageNum=0
fi
enable_abstract="$3"
if [ -z "$pageNum" ]; then
enable_abstract=false
fi
curl -XGET "https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=$WD&pageNum=$pageNum&enable_abstract=$enable_abstract" -H "Authorization: Bearer $BAIDU_API_KEY"
```_meta.json
{
"ownerId": "kn77kbjpenv5qx583b5cas9tx980fmxt",
"slug": "baidu-scholar-search",
"version": "1.0.0",
"publishedAt": 1770217047413
}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations. Skill: baidu scholar search Owner: jlpJavaWayUp Summary: Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-04T14:57:27.413Z | user - Initial release of Baidu Scholar Search skill. - Search for Chinese and English academic lite
Skill: baidu scholar search
Owner: jlpJavaWayUp
Summary: Baidu Academic Search Tool enables the retrieval of both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations.
Tags: latest:1.0.0
Version history:
v1.0.0 | 2026-02-04T14:57:27.413Z | user
Archive index:
Archive v1.0.0: 3 files, 1780 bytes
Files: baidu_scholar_search.sh (550b), SKILL.md (2356b), _meta.json (139b)
File v1.0.0:SKILL.md
Based on the keywords entered by the user, search for both Chinese and English literature, covering various types of literature such as academic journals, conference papers, and dissertations
| name | path | description | |-------------|---------------------------------|---------------------------------------| |scholar_search|/v2/tools/baidu_scholar/search|Based on the keywords entered, search for both Chinese and English literature |
wd: The search keywords(required,e.g. 'machine learning')pageNum: page num (default: 0)enable_abstract: whether to enable abstract (default: false), if true return the abstract of the literaturecurl -XGET 'https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=人工智能&enable_abstract=true' \
-H 'Authorization: Bearer API_KEY'
#!/bin/bash
# Baidu Scholar Search Skill Implementation
set -e
# Check if required environment variable is set
if [ -z "$BAIDU_API_KEY" ]; then
echo '{"error": "BAIDU_API_KEY environment variable not set"}'
exit 1
fi
WD="$1"
if [ -z "$wd" ]; then
echo '{"error": "Missing wd parameter"}'
exit 1
fi
pageNum="$2"
if [ -z "$pageNum" ]; then
pageNum=0
fi
enable_abstract="$3"
if [ -z "$pageNum" ]; then
enable_abstract=false
fi
curl -XGET "https://qianfan.baidubce.com/v2/tools/baidu_scholar/search?wd=$WD&pageNum=$pageNum&enable_abstract=$enable_abstract" -H "Authorization: Bearer $BAIDU_API_KEY"
File v1.0.0:_meta.json
{ "ownerId": "kn77kbjpenv5qx583b5cas9tx980fmxt", "slug": "baidu-scholar-search", "version": "1.0.0", "publishedAt": 1770217047413 }
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-jlpjavawayup-baidu-scholar-search/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/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-jlpjavawayup-baidu-scholar-search/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/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:17:50.876Z"
}
},
"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": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/jlpJavaWayUp/baidu-scholar-search",
"sourceUrl": "https://clawhub.ai/jlpJavaWayUp/baidu-scholar-search",
"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-jlpjavawayup-baidu-scholar-search/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "2.5K downloads",
"href": "https://clawhub.ai/jlpJavaWayUp/baidu-scholar-search",
"sourceUrl": "https://clawhub.ai/jlpJavaWayUp/baidu-scholar-search",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "1.0.0",
"href": "https://clawhub.ai/jlpJavaWayUp/baidu-scholar-search",
"sourceUrl": "https://clawhub.ai/jlpJavaWayUp/baidu-scholar-search",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-04T14:57:27.413Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-jlpjavawayup-baidu-scholar-search/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 1.0.0",
"description": "- Initial release of Baidu Scholar Search skill. - Search for Chinese and English academic literature, including journals, conference papers, and dissertations. - Supports keyword search, pagination, and optional abstract retrieval. - Requires BAIDU_API_KEY environment variable for authentication. - Uses curl for making API requests to Baidu Scholar.",
"href": "https://clawhub.ai/jlpJavaWayUp/baidu-scholar-search",
"sourceUrl": "https://clawhub.ai/jlpJavaWayUp/baidu-scholar-search",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-04T14:57:27.413Z",
"isPublic": true
}
]Sponsored
Ads related to baidu scholar search and adjacent AI workflows.