AgentMarketMCP / SKILL 资产档案馆

目录 / GoldBean — x402 Micropaid API Marketplace

MCP 鉴权未知 未评级 已上架

GoldBean — x402 Micropaid API Marketplace

10 paid APIs for AI Agents via x402 micropayments. Crypto price, web search, image generation, AI chat, translation, weather, code execution and more. Pay-per-call with USDC on Base. No API keys, no registration.

该来源不提供完整文件导出(国内平台多为平台内托管),仅存元数据与原链

接入信息

传输形态
http
鉴权方式
鉴权未知
端点
https://goldbean--wuzenghai616.run.tools
鉴权方式未标注,请核对官方文档后再接入——不要直接使用以下片段
{
  "mcpServers": {
    "GoldBean — x402 Micropaid API Marketplace": {
      "url": "https://goldbean--wuzenghai616.run.tools"
    }
  }
}

能力清单

工具说明
service_healthChecks GoldBean API service health, version, and active endpoint count. Use this FIRST before calling any other tool to verify the service is operational. Returns JSON: {status: "ok"|"degraded", version: string, uptime: number, endpoints: number, baidu: boolean, payment: boolean}. No authentication required. Pricing: Free. Read-only.
baidu_ocrExtracts printed text from images using Baidu General OCR — the default choice for most OCR tasks. Supports 20+ languages including Chinese, English, Japanese, Korean, and European languages. Use for: screenshots, photos of documents, scanned pages, signs, or any image with printed text. Do NOT use for: handwritten text (use baidu_ocr_handwriting), ID cards (use baidu_ocr_idcard), bank cards (use baidu_ocr_bankcard), business licenses (use baidu_ocr_business_license), tables (use baidu_ocr_table), or complex document layouts requiring contextual understanding (use baidu_deepseek_ocr). Behavior: accepts base64 image or public URL; detects text in 20+ languages; returns word-level and line-level results with bounding boxes. Limitation: accuracy drops on blurry, rotated, or low-contrast images — use baidu_ocr_accurate for those cases. Output: {words_result: [{words: string, location: {top,left,width,height}}], words_result_num: number, language: string, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_ocr_accurateHigh-precision OCR engine for difficult images where baidu_ocr returns insufficient results. Use when: image is blurry, low-resolution, has poor lighting, contains small fonts, or standard OCR missed characters. Supports Chinese, English, Japanese, Korean, French, Spanish. Do NOT use for standard-quality images — baidu_ocr is faster and cheaper for those. Behavior: runs a heavier model with character-level recognition; slower than baidu_ocr but significantly more accurate on challenging inputs. Limitation: supports fewer languages than baidu_ocr; higher latency (~2-3s vs ~1s). Output: {words_result: [{words: string, location: {top,left,width,height}, probability: number}], words_result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_ocr_tableExtracts structured table data — rows, columns, and cell text — from images of spreadsheets, financial statements, or any tabular content. Use when: you need to preserve row/column structure, not just flat text. Do NOT use for: plain text extraction (use baidu_ocr), or complex documents with mixed tables and paragraphs (use baidu_paddleocr_vl). Behavior: detects table grid, maps cell boundaries, extracts text per cell. Supports merged cells and multi-page tables. Limitation: works best on clearly bordered tables; struggles with borderless or nested tables. Output: {tables_result: [{table_location: {top,left,width,height}, body: [{row_start, row_end, col_start, col_end, words: string}]}], tables_result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_ocr_idcardExtracts structured fields from Chinese national ID cards (二代身份证). Accepts both front side (photo+info) and back side (issuing authority+validity). Use for: identity verification, KYC workflows, form auto-filling from ID photos. Do NOT use for: non-Chinese ID cards, passports, or driver licenses — use baidu_ocr or baidu_deepseek_ocr for those. Behavior: requires specifying id_card_side ("front" or "back"); auto-detects and crops card region; validates check digit. Limitation: only supports Chinese second-generation ID cards. Output: {name, gender, nationality, birth, address, id_number} (front) or {issue_authority, issue_date, expiry_date} (back), plus image quality scores. Pricing: $0.001/call. Read-only.
baidu_ocr_handwritingRecognizes handwritten Chinese or English text from images. Use for: digitizing handwritten notes, forms, signatures, meeting minutes, or classroom notes. Do NOT use for: printed/typed text (use baidu_ocr), or mixed handwritten+printed content (use baidu_deepseek_ocr). Behavior: optimized for cursive and irregular handwriting; supports Chinese (default) and English. Limitation: accuracy varies with handwriting legibility; cannot recognize mathematical formulas or drawings. Output: {words_result: [{words: string, location: {top,left,width,height}}], words_result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_ocr_qrcodeDetects and decodes QR codes, barcodes, and 2D codes from images. Use for: extracting URLs, payment codes, product barcodes, or ticket codes from photos. Do NOT use for: general text extraction (use baidu_ocr). Behavior: supports QR Code, Data Matrix, PDF417, Aztec, Code128, Code39, EAN-13, UPC-A and more; detects multiple codes in a single image. Limitation: code must be visible and not heavily distorted. Output: {codes_result: [{type: string, text: string, location: {top,left,width,height}}], codes_result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_ocr_bankcardExtracts bank card number, card type, and bank name from images of bank cards. Use for: payment form auto-fill, card digitization, or financial app onboarding. Do NOT use for: ID cards (use baidu_ocr_idcard) or business licenses (use baidu_ocr_business_license). Behavior: auto-detects card edges; validates card number via Luhn algorithm; identifies issuing bank. Limitation: supports Chinese bank cards only; cannot extract CVV or expiry date for security reasons. Output: {bank_card_number: string, bank_name: string, card_type: "debit"|"credit", valid_date: string, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_ocr_business_licenseExtracts structured fields from Chinese business license certificates (营业执照). Use for: company verification, B2B onboarding, business data entry automation. Do NOT use for: non-Chinese business documents — use baidu_deepseek_ocr for those. Behavior: recognizes both old-style (paper) and new-style (electronic) licenses; extracts all registered fields. Limitation: only supports Chinese business licenses. Output: {company_name, social_credit_code, legal_person, registered_capital, paid_capital, establishment_date, business_scope, address, business_term, log_id}. Pricing: $0.001/call. Read-only.
baidu_ocr_webimageOCR optimized specifically for web images with complex backgrounds, watermarks, non-standard fonts, or embedded text. Use when: extracting text from memes, infographics, product images, social media posts, or screenshots with UI elements. Do NOT use for: clean document scans (use baidu_ocr), or handwritten content (use baidu_ocr_handwriting). Behavior: applies background filtering and watermark removal before OCR; handles stylized fonts and curved text. Limitation: may miss text embedded in complex graphics; not suitable for tables (use baidu_ocr_table). Output: {words_result: [{words: string, location: {top,left,width,height}}], words_result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_deepseek_ocrAI-powered OCR using DeepSeek vision model for complex document understanding beyond simple text extraction. Use when: document has mixed content (text + tables + images), complex layouts, stamps/seals, or you need contextual understanding of the content. Do NOT use for: simple text extraction from clean images (use baidu_ocr — faster and cheaper). Behavior: uses VLM (vision-language model) to understand document semantics; can answer questions about document content; handles multi-page and multi-column layouts. Limitation: higher latency (~3-5s); may hallucinate on ambiguous content. Output: {text: string, layout: [{type, content, bbox}], answer: string (if question provided), log_id: number}. Pricing: $0.001/call. Read-only.
baidu_paddleocr_vlAdvanced document understanding using PaddleOCR-VL vision-language model — Baidu's most capable OCR for complex documents. Use for: documents with tables, mathematical formulas, chemical structures, stamps, seals, or mixed layouts that require visual-language reasoning. Do NOT use for: simple text extraction (use baidu_ocr), or when you need structured table extraction only (use baidu_ocr_table). Behavior: combines OCR with layout analysis and formula recognition; can process multi-page documents; supports question-answering about document content. Limitation: highest latency among OCR tools (~5-8s); requires clear input images. Output: {text: string, tables: [{rows, cols, cells}], formulas: [{latex, bbox}], layout: [{type, bbox, content}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_qianfan_ocrCustom template-based OCR using Baidu Qianfan platform — for structured field extraction from specific document types you have configured. Use when: you have a custom document template (invoices, receipts, customs forms) set up on Qianfan platform and need to extract predefined fields. Do NOT use for: general text extraction (use baidu_ocr), or documents without a configured template. Behavior: matches input image against your Qianfan template; extracts only the fields defined in the template. Limitation: requires a pre-configured template_id from Qianfan platform; cannot be used without one. Output: {template_name: string, fields: {field_name: value, ...}, confidence: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_ttsConverts text to natural-sounding speech audio using Baidu Text-to-Speech engine. Use for: generating voiceover for videos, building accessibility features (screen readers), creating voice assistants, or producing audio content. Supports Chinese (zh) and English (en) with 6 voice personas. Do NOT use for: speech-to-text (use baidu_asr). Behavior: synthesizes speech from text input; supports speed/pitch/volume control; outputs MP3 or WAV. Limitation: max 1024 bytes (Chinese) or 2048 bytes (English) per request; for longer text, split into multiple calls. Output: {audio: base64_string, format: "mp3"|"wav", duration: number, log_id: number}. Pricing: $0.001/call.
baidu_asrConverts speech audio to text using Baidu Automatic Speech Recognition. Use for: transcribing voice recordings, building voice commands, meeting transcription, or speech-to-text features. Supports Chinese and English. Do NOT use for: text-to-speech (use baidu_tts). Behavior: accepts base64 audio in WAV, MP3, PCM, or AMR format; returns word-level timestamps; supports 8kHz and 16kHz sample rates. Limitation: max 60 seconds per request; for longer audio, split into segments; noisy environments reduce accuracy. Output: {result: [{text: string, start_time: number, end_time: number}], text: string, language: string, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_llm_chatGenerates AI text responses using Baidu ERNIE large language models. Use for: conversational AI, question answering, text generation, summarization, code generation, content rewriting, and general reasoning. Supports multi-turn conversations with message history. Do NOT use for: tasks requiring deep multi-step reasoning (use baidu_deepthink), or image analysis (use baidu_vision_chat). Behavior: processes message array with role/content pairs; supports streaming; models include ernie-4.0-8k (most capable), ernie-3.5-8k (balanced), ernie-speed-128k (long context). Limitation: context window varies by model (8K-128K tokens); rate-limited by subscription tier. Output: {result: string, finish_reason: "stop"|"length"|"content_filter", usage: {prompt_tokens, completion_tokens, total_tokens}, log_id: number}. Pricing: $0.002/1K tokens.
baidu_deepthinkPerforms deep multi-step reasoning using ERNIE with extended thinking capability. Use for: mathematical proofs, logical analysis, complex problem-solving, coding challenges, or any task requiring deliberate step-by-step reasoning before answering. Do NOT use for: simple Q&A or text generation (use baidu_llm_chat — faster and cheaper), or image-based reasoning (use baidu_vision_chat). Behavior: allocates a thinking budget (configurable) for internal reasoning before generating the final answer; exposes the reasoning chain in the response. Limitation: higher latency and token consumption than baidu_llm_chat; may over-think simple questions. Output: {result: string, thinking_process: string, finish_reason: string, usage: {prompt_tokens, thinking_tokens, completion_tokens, total_tokens}, log_id: number}. Pricing: $0.002/1K tokens.
baidu_vision_chatAnalyzes images through conversational interface using Baidu vision-language model (ERNIE-VL). Use for: asking questions about image content, describing scenes, reading text in images, identifying objects, or performing visual reasoning. Do NOT use for: pure text OCR without context (use baidu_ocr — cheaper), or text-only chat (use baidu_llm_chat). Behavior: accepts image as base64 or URL in message content; supports multi-turn visual conversations; can describe, count, compare, and reason about visual elements. Limitation: max 1 image per request; image size should be under 10MB; complex charts/diagrams may be misinterpreted. Output: {result: string, finish_reason: string, usage: {prompt_tokens, completion_tokens, total_tokens}, log_id: number}. Pricing: $0.002/1K tokens.
baidu_translateTranslates text between 28+ languages using Baidu Translation API. Supports Chinese, English, Japanese, Korean, French, German, Spanish, Russian, Portuguese, Arabic, Thai, Vietnamese, and more. Use for: any text translation need — content localization, multilingual chat, document translation. Do NOT use for: translating entire documents with formatting preservation — this tool returns plain text only. Behavior: auto-detects source language when "from" is set to "auto"; supports up to 6000 characters per request. Limitation: not optimized for technical/specialized terminology; for domain-specific translation, consider using baidu_llm_chat with translation prompt. Output: {trans_result: [{src: string, dst: string}], from: string, to: string, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_image_recognitionGeneral-purpose image recognition that identifies objects, scenes, concepts, and activities. Use for: image tagging, content categorization, smart photo albums, or as a pre-filter before more specific recognition tools. Do NOT use for: specific tasks like plant identification (use baidu_plant), animal identification (use baidu_animal), food recognition (use baidu_dish), or logo detection (use baidu_logo) — those specialized tools are more accurate. Behavior: returns top-N recognition results with confidence scores; optionally includes Baidu Baike encyclopedia entries for context. Limitation: may return generic labels for uncommon objects. Output: {result: [{keyword: string, score: number, root: string, baike_info: {description, image_url}}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_object_detectDetects and locates multiple objects in images with bounding boxes. Use for: object counting, inventory management, surveillance, or building visual search systems. Do NOT use for: identifying what objects are (use baidu_image_recognition), or detecting specific categories like vehicles (use baidu_vehicle_detect), faces (use baidu_face_detect), or logos (use baidu_logo). Behavior: returns all detected objects with name, location (bounding box), and confidence; supports per-category count. Limitation: detects common everyday objects; may miss specialized or rare items. Output: {result: [{name: string, score: number, location: {top,left,width,height}}], object_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_landmarkIdentifies famous landmarks, buildings, and tourist attractions from images. Use for: travel photo tagging, location-based services, or tourism apps. Do NOT use for: general scene recognition (use baidu_image_recognition). Behavior: matches against database of 50,000+ global landmarks; returns landmark name, confidence, and geographic coordinates. Limitation: only recognizes notable landmarks; ordinary buildings return no result. Output: {result: [{landmark: string, score: number, location: {lat, lon}}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_plantIdentifies plant species from images with high accuracy. Use for: botanical identification, gardening apps, nature education, or plant disease research. Do NOT use for: general image recognition (use baidu_image_recognition), or animal identification (use baidu_animal). Behavior: matches against 20,000+ plant species including flowers, trees, herbs, and succulents; returns Latin and common names; optionally includes Baike encyclopedia data. Limitation: requires clear plant photos; blurry or partial images reduce accuracy. Output: {result: [{name: string, score: number, baike_info: {description, image_url}}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_animalIdentifies animal species from images. Use for: wildlife identification, pet breed detection, educational apps, or animal encyclopedias. Do NOT use for: plant identification (use baidu_plant), or general object detection (use baidu_object_detect). Behavior: recognizes 10,000+ animal species including mammals, birds, reptiles, fish, and insects; returns common and scientific names with confidence. Limitation: may confuse similar-looking breeds; works best on clear, well-lit photos of the animal's face/body. Output: {result: [{name: string, score: number, baike_info: {description, image_url}}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_dishIdentifies dishes and food items from images. Use for: food logging apps, restaurant menu digitization, dietary tracking, or calorie estimation. Do NOT use for: ingredient identification (use baidu_ingredient), or general image recognition (use baidu_image_recognition). Behavior: recognizes 50,000+ dishes from various cuisines; returns dish name, confidence, calorie estimate, and optional Baike info. Limitation: homemade or hybrid dishes may not be recognized; calorie estimates are approximate. Output: {result: [{name: string, score: number, calorie: number, baike_info: {description, image_url}}], result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_logoDetects and identifies brand logos in images. Use for: brand monitoring, sponsorship analysis, advertisement auditing, or competitor tracking. Do NOT use for: general object detection (use baidu_object_detect). Behavior: detects multiple logos in a single image; returns brand name, location, and confidence; supports both library logos and custom logos. Limitation: only recognizes registered brand logos; obscure or local brands may not be found. Output: {result: [{name: string, type: number, location: {top,left,width,height}, probability: number}], result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_carIdentifies vehicle make, model, and year from images. Use for: vehicle identification, parking management, automotive apps, or car listing verification. Do NOT use for: detecting/counting vehicles in traffic (use baidu_vehicle_detect — that tool detects presence and count, not model identification). Behavior: recognizes 3,000+ vehicle models from global brands; returns brand, model, year, and vehicle type with confidence. Limitation: requires a clear view of the vehicle's front or rear; side angles reduce accuracy. Output: {result: [{name: string, score: number, year: string, type: string}], result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_ingredientIdentifies food ingredients and raw materials from images. Use for: cooking apps, dietary analysis, grocery identification, or allergen detection. Do NOT use for: identifying prepared dishes (use baidu_dish — that tool identifies cooked food, not raw ingredients). Behavior: recognizes 1,000+ common ingredients including vegetables, fruits, meats, grains, and spices; returns name and confidence. Limitation: processed or mixed ingredients may be misidentified. Output: {result: [{name: string, score: number}], result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_vehicle_detectDetects and counts vehicles in images — returns vehicle count, type classification, and bounding boxes. Use for: traffic monitoring, parking lot management, smart city applications, or vehicle flow analysis. Do NOT use for: identifying specific car models (use baidu_car — that tool identifies make/model/year, not just presence). Behavior: detects cars, trucks, buses, and motorcycles; returns count per type and bounding boxes; supports custom detection area via polygon coordinates. Limitation: aerial/overhead angles work best; side views may miss vehicles behind obstacles. Output: {vehicle_num: number, vehicle_info: [{type: string, location: {top,left,width,height}}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_face_detectDetects faces in images and extracts 10+ facial attributes. Use for: face analysis, demographic estimation, photo organization, or beauty/cosmetics apps. Do NOT use for: comparing two faces to check if same person (use baidu_face_compare). Behavior: detects up to 10 faces per image; extracts attributes: age, beauty score, expression, face shape, gender, glasses, eye status, emotion, race, mask, and quality. Limitation: requires frontal or near-frontal faces; profile views reduce attribute accuracy. Output: {face_num: number, face_list: [{face_token, location: {top,left,width,height}, age: number, gender: {type, probability}, expression: {type, probability}, glasses: {type, probability}, emotion: {type, probability}, mask: {type, probability}, quality: {blur, illumination, completeness}}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_face_compareCompares two face images and determines if they belong to the same person. Use for: identity verification, duplicate account detection, photo deduplication, or access control. Do NOT use for: detecting faces or extracting attributes (use baidu_face_detect). Behavior: accepts two face images (base64 or URL); extracts facial features and computes similarity; returns score 0-100 where higher = more similar. Automatically handles different image sizes, angles, and lighting conditions. Limitation: both images must contain exactly one clear face; multi-face images may cause errors; sunglasses/masks reduce accuracy. Output: {score: number, threshold: number, face_list: [{face_token}], log_id: number}. Score interpretation: >80 = same person (high confidence), 60-80 = likely same person, <60 = different persons. Pricing: $0.001/call. Read-only.
baidu_body_analysisAnalyzes human body attributes in images — detects people and extracts clothing/pose attributes. Use for: crowd analytics, retail fashion analysis, fitness/sports apps, or surveillance. Do NOT use for: face analysis (use baidu_face_detect), or gesture recognition (use baidu_gesture). Behavior: detects multiple bodies; extracts gender, upper/lower clothing color, clothing type, and body orientation. Limitation: works best on standing persons; seated or partially occluded bodies reduce accuracy. Output: {person_num: number, person_info: [{attributes: {gender: {type, probability}, upper_color: {type, probability}, lower_color: {type, probability}, orientation: {type, probability}, location: {top,left,width,height}}}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_gestureDetects and recognizes hand gestures in images. Use for: touchless interfaces, sign language translation, interactive installations, or gaming. Do NOT use for: body analysis (use baidu_body_analysis), or face detection (use baidu_face_detect). Behavior: recognizes 20+ gesture types including fist, open palm, OK sign, thumbs up, victory, and counting gestures; returns gesture classification and hand keypoints. Limitation: requires visible hand(s); complex overlapping gestures may be misclassified. Output: {result: [{classname: string, probability: number, location: {top,left,width,height}, handparts: {keypoints: [{x, y}]}}], result_num: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_image_enhanceEnhances image quality through AI-powered denoising, dehazing, and clarity improvement. Use for: improving low-quality photos, removing haze from landscape images, enhancing document scans, or preparing images for OCR (enhance before calling baidu_ocr for better results). Do NOT use for: generating new images (use baidu_image_gen), or editing image content (use baidu_image_edit). Behavior: applies one of four enhancement modes — contrast_enhance, dehaze, denoising, or clarity_enhance — based on the type parameter. Returns a new enhanced image, original is not modified. Limitation: output is base64-encoded image data (not a URL); large images may take 3-5s to process. Output: {image: base64_string, type: string, log_id: number}. Pricing: $0.001/call.
baidu_image_genGenerates new images from text descriptions using Baidu AI image generation model. Use for: creating illustrations, concept art, marketing visuals, social media graphics, or any creative content from text prompts. Do NOT use for: editing existing images (use baidu_image_edit), or enhancing image quality (use baidu_image_enhance). Behavior: accepts detailed text prompt with style, content, and composition instructions; supports 4 art styles (realistic, anime, sketch, oil_painting, 3d); generates 1-4 images per call. Limitation: generation takes 5-15 seconds; prompt quality directly affects output quality — be specific about subject, style, lighting, and composition. Output: {images: [{base64: string, url: string}], seed: number, log_id: number}. Pricing: $0.03/call.
baidu_image_editEdits existing images using natural language instructions — add, remove, or modify elements via text commands. Use for: background removal, object removal, style transfer, color changes, or any targeted image modification. Do NOT use for: generating new images from scratch (use baidu_image_gen), or quality enhancement without content change (use baidu_image_enhance). Behavior: takes a source image + text instruction describing the edit; optionally accepts a mask image (white regions = editable, black = preserved) for precise control. Supports inpainting, outpainting, and style transfer. Limitation: edit instruction must be clear and specific; complex multi-element edits may produce artifacts; processing takes 5-15 seconds. Output: {image: base64_string, log_id: number}. Pricing: $0.03/call.
baidu_video_genGenerates short videos from text descriptions using Baidu AI video generation model. Use for: creating video clips, animations, motion graphics, social media content, or video ads from text prompts. Do NOT use for: image generation (use baidu_image_gen — faster and cheaper). Behavior: async operation — submits a generation task and returns a task_id; use baidu_video_query to check completion status and retrieve the video URL. Supports 720p and 1080p; duration 1-10 seconds. Limitation: generation takes 2-5 minutes; prompt should include scene description, camera movement, and action details for best results. Output: {task_id: string, status: "pending", log_id: number}. Pricing: $0.08/call.
baidu_video_queryChecks the status and retrieves the result of an async video generation task submitted via baidu_video_gen. Use after calling baidu_video_gen to poll for completion. Do NOT use for: initiating video generation (use baidu_video_gen). Behavior: takes a task_id and returns current status; when status is "success", includes video download URL. Poll every 30-60 seconds — typical generation takes 2-5 minutes. Limitation: download URL is valid for 24 hours; video must be downloaded before expiry. Output: {task_status: "pending"|"running"|"success"|"failed", progress: number, video_url: string (when complete), error_msg: string (when failed), log_id: number}. Pricing: $0.001/call. Read-only.
baidu_nlpPerforms Chinese natural language processing — lexical analysis, word segmentation, and POS tagging. Use for: Chinese text tokenization, part-of-speech analysis, dependency parsing, or preparing Chinese text for downstream processing. Do NOT use for: sentiment analysis (use baidu_sentiment), text summarization (use baidu_summary), or keyword extraction (use baidu_keyword_extraction). Behavior: supports two tasks — "lexer" (word segmentation + POS tagging) and "dep" (dependency parsing); optimized for Chinese language. Limitation: not suitable for non-Chinese text; max 2048 characters per request. Output: {items: [{word: string, pos: string, offset: number, length: number, items: [{word, pos, offset, length}]}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_sentimentAnalyzes sentiment and emotional tone of text — classifies as positive, negative, or neutral with confidence scores. Use for: brand monitoring, customer feedback analysis, social media sentiment tracking, or product review analysis. Do NOT use for: keyword extraction (use baidu_keyword_extraction), or text summarization (use baidu_summary). Behavior: supports general-purpose and finance-domain models; returns sentiment classification, probability (0-1), and intensity (0-1) for positive/negative/neutral classes. Limitation: optimized for Chinese and English; sarcasm and mixed sentiment may reduce accuracy. Output: {items: [{sentiment: "positive"|"negative"|"neutral", probability: number, confidence: number, positive_prob: number, negative_prob: number}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_summaryGenerates concise summaries of long text using Baidu abstractive summarization. Use for: article abstracts, news digests, content previews, or reducing long documents to key points. Do NOT use for: sentiment analysis (use baidu_sentiment), or keyword extraction (use baidu_keyword_extraction). Behavior: takes text (max 3000 chars) and optional title for context; generates a summary of configurable max length; returns compression ratio. Limitation: optimized for Chinese text; very long documents must be chunked; summary quality depends on input text coherence. Output: {summary: string, summary_len: number, compression_ratio: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_text_correctorDetects and corrects spelling, grammar, and punctuation errors in Chinese text. Use for: proofreading, content quality assurance, writing assistance, or automated editing. Do NOT use for: English text correction, or sentiment analysis (use baidu_sentiment). Behavior: scans for Chinese-specific errors including homophone confusion, character misuse, punctuation errors, and grammar issues; returns corrected text with error positions and suggestions. Limitation: optimized for Chinese only; cannot correct domain-specific terminology or proper nouns. Output: {corrected_text: string, error_list: [{position: number, original: string, correction: string, type: string}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_keyword_extractionExtracts key phrases and keywords from text using Baidu NLP keyword extraction. Use for: content tagging, SEO optimization, document indexing, or topic modeling. Do NOT use for: sentiment analysis (use baidu_sentiment), or text summarization (use baidu_summary). Behavior: analyzes text and returns ranked keywords with relevance weights; supports up to 100,000 characters; configurable number of keywords returned. Limitation: optimized for Chinese text; single-word extraction only (no multi-word phrases). Output: {items: [{score: number, tag: string}], log_id: number}. Pricing: $0.001/call. Read-only.
baidu_word_embeddingGenerates word-level vector embeddings for individual words or short phrases. Use for: semantic similarity calculation, word clustering, vocabulary analysis, or as input features for custom NLP models. Do NOT use for: sentence or document embeddings (use baidu_embedding — that tool handles longer texts and is optimized for semantic search). Behavior: maps a single word to a dense vector of configurable dimension (64/128/256/512); higher dimensions capture more semantic nuance. Limitation: single word or short phrase only (max 8 characters); not suitable for sentences or paragraphs. Output: {word: string, vector: [number, ...], dim: number, log_id: number}. Pricing: $0.001/call. Read-only.
baidu_embeddingGenerates dense vector embeddings for text passages using Baidu Embedding model. Use for: semantic search, document clustering, recommendation systems, RAG (Retrieval-Augmented Generation) pipelines, or building vector databases. Do NOT use for: single-word embeddings (use baidu_word_embedding), or reranking search results (use baidu_reranker). Behavior: accepts up to 16 texts per request; supports embedding-v1 (general), bge_large_zh (Chinese-optimized), bge_large_en (English-optimized); returns normalized vectors suitable for cosine similarity. Limitation: max 384 tokens per text; longer texts are truncated. Output: {data: [{object: "embedding", index: number, embedding: [number, ...]}], usage: {prompt_tokens, total_tokens}, model: string, log_id: number}. Pricing: $0.002/1K tokens. Read-only.
baidu_rerankerReranks a list of candidate documents by relevance to a query — improves search precision after initial retrieval. Use for: refining RAG retrieval results, improving search result quality, or reordering candidate documents from any retrieval system. Do NOT use for: generating embeddings (use baidu_embedding — embeddings are for similarity search, reranking is for query-document relevance scoring). Behavior: takes a query and up to 100 candidate documents; computes relevance score for each; returns documents sorted by relevance. Models: reranker-v1 (general), bge_reranker_large (higher accuracy, slower). Limitation: processes up to 100 documents per call; each document max 512 tokens; latency scales with document count. Output: {results: [{index: number, relevance_score: number, document: string}], model: string, log_id: number}. Pricing: $0.002/1K tokens. Read-only.
baidu_text_reviewReviews text content for spam, abuse, profanity, and policy violations. Use for: moderating user-generated content, filtering comments, checking compliance before publishing, or automated content screening. Do NOT use for: image moderation (use baidu_image_review), or sentiment analysis (use baidu_sentiment — that tool analyzes emotion, not policy violations). Behavior: checks text against 6 categories — politics, porn, vulgar, abuse, terrorism, advertising; returns per-category risk level and confidence. Limitation: optimized for Chinese text; English support is limited; context-dependent sarcasm may cause false positives. Output: {results: [{type: string, subType: number, conclusion: "pass"|"reject"|"review", probability: number, hitMsg: string}], conclusion: "pass"|"reject"|"review", log_id: number}. Pricing: $0.001/call. Read-only.
baidu_image_reviewReviews image content for inappropriate, violent, or policy-violating material. Use for: moderating user-uploaded images, content compliance, platform safety, or automated image screening before publishing. Do NOT use for: text moderation (use baidu_text_review), or object detection (use baidu_object_detect — that tool finds objects, this one checks policy compliance). Behavior: checks images against 6 categories — politics, porn, vulgar/abuse, terrorism, advertising, and QR code detection; returns per-category risk level and confidence. Limitation: cartoon/illustration content may have different thresholds than real photos; context-dependent judgment may require human review for borderline cases. Output: {results: [{type: string, subType: number, conclusion: "pass"|"reject"|"review", probability: number, msg: string}], conclusion: "pass"|"reject"|"review", log_id: number}. Pricing: $0.001/call. Read-only.
baidu_helixfoldPredicts protein 3D structure from amino acid sequence using Baidu HelixFold — Baidu's implementation inspired by AlphaFold. Use for: bioinformatics research, drug discovery, protein engineering, or structural biology studies. Do NOT use for: general AI tasks — this is a specialized scientific tool. Behavior: takes amino acid sequence (single-letter codes, max 2000 residues); predicts 3D folding structure; returns PDB-format coordinates and per-residue confidence (pLDDT) scores. Models: helixfold (standard), helixfold-single (faster, lower accuracy). Limitation: prediction takes 10-30 minutes for long sequences; accuracy drops for sequences >1500 residues; cannot predict protein complexes. Output: {sequence: string, pdb: string, plddt: [{residue: number, score: number}], model: string, log_id: number}. Pricing: $0.001/call. Read-only.
registerRegisters a new GoldBean API account to access paid endpoints. Use to create an account for any tool that requires authentication. Returns user ID and API key needed for subsequent paid calls. Do NOT use if you already have an account — use check_credits to verify existing credentials. Behavior: creates account with email+password; grants 100 free credits (100 calls) on registration; returns API key for authentication. Limitation: one account per email; API key should be stored securely. Output: {user_id: string, api_key: string, credits: number, plan: "free", log_id: number}. Pricing: Free.
check_creditsChecks remaining API credits, usage statistics, and subscription status for a GoldBean account. Use to: monitor usage, check remaining free tier calls, verify subscription plan, or debug authentication issues before calling paid endpoints. Do NOT use for: registering a new account (use register). Behavior: accepts user_id OR api_key for authentication; returns current credit balance, usage history, free tier status, and active subscription. Limitation: only shows data for the authenticated account. Output: {user_id: string, credits_remaining: number, credits_used: number, free_tier: {calls_today: number, limit: number, reset_at: string}, subscription: {plan: string, status: string, expires_at: string}, log_id: number}. Pricing: Free. Read-only.
纠错与举报(发现条目失效、署名有误或涉及侵权?)
提交举报 / 纠错

侵权举报经核验成立后,我们会即时下线该条目并删除已存的内容副本。