Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

echosawechosaw 分析

Agent Skill

echosaw 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,443

周安装

187

GitHub Stars

1

下载量

1,556
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:echosaw(echosaw 分析)
来源仓库:https://github.com/echosaw/echosaw
安装命令:
openclaw skills install echosaw
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install echosaw

简介

echosaw 用于查找、检索和筛选相关信息,支持基于关键词或任务场景快速定位候选结果。

  • 适合在 OpenClaw 中需要根据线索快速获取信息时使用。
  • 通过 clawhub 安装后,可结合来源仓库和原始 README 核验具体用法。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议在使用前了解其检索范围和准确性限制。

SKILL.md

name
echosaw
metadata
slug
echosaw
title
Echosaw Media Intelligence
version
1.3.2
minMcpVersion
1.1.0
description
>
category
media-intelligence
requires
env
description
Your Echosaw API key (get one at https://echosaw.com/pricing)
required
true
secret
true
description
API base URL (default https://api.echosaw.com)
required
false
install
https://mcp.echosaw.com
homepage
https://echosaw.com/developers/mcp-integration
pricing
https://echosaw.com/pricing
tags

Echosaw Media Intelligence

Overview

Echosaw is a media intelligence platform — not just a transcription tool. It analyzes video, audio, and image files using AI (Amazon Rekognition, Transcribe, Comprehend, and Bedrock/Claude) and produces structured intelligence reports. Each report can include:

  • Transcripts — Full speech-to-text output with timestamps
  • Content moderation signals — Flagged content categories and confidence scores
  • Sentiment analysis — Emotional tone detected across the media
  • Visual object labels — Recognized objects, scenes, and activities in video/image frames
  • Geographic metadata — Reverse-geocoded location data (Growth tier and above)
  • LLM-generated summaries — AI-authored narrative summaries powered by Bedrock/Claude

The analysis pipeline: upload → malware scan (GuardDuty) → media probe (validation, metadata) → AI analysis (transcription, visual recognition, content moderation, sentiment) → LLM report generation (Bedrock/Claude) → packaging and delivery.

Available Tools

ToolDescriptionRequired Parameters
echosaw_analyze_mediaUpload an audio, video, or image file to Echosaw for asynchronous media analysis. Returns a job ID used to track processing and retrieve results.filePath (string) — Absolute path to the media file on disk; mediaType (string) — One of: video, audio, image
echosaw_analyze_media_urlSubmit a publicly accessible or authorized media URL to Echosaw for asynchronous analysis without uploading the file directly. Returns a job ID used to track processing and retrieve results.url (string) — HTTP(S) URL of the media file; mediaType (string) — One of: video, audio, image
echosaw_check_job_statusRetrieve the current processing state of an Echosaw analysis job, including whether the job is queued, processing, completed, or failed.mediaId (string) — The mediaId returned by echosaw_analyze_media or echosaw_analyze_media_url
echosaw_get_analysis_resultsRetrieve structured analysis results generated by Echosaw for a completed job, including summaries, transcripts, detected entities, events, and other intelligence outputs. Supports an optional section parameter to reduce response size.mediaId (string) — The mediaId of a completed analysis; section (string, optional) — One of: summary, transcript, safety, insights, metadata, downloads, all
echosaw_download_mediaGenerate a presigned download URL for the source media file associated with a completed analysis job. The URL is valid for 1 hour.mediaId (string) — The mediaId of the media to download
echosaw_search_mediaSemantic search across your analyzed media library. Returns ranked results with titles, summaries, transcript snippets, and relevance scores.query (string) — Natural language search query
echosaw_list_mediaList media items in your Echosaw library with metadata including filename, type, status, size, and duration.limit (number, optional) — Max items to return (default 25)
echosaw_get_profileRetrieve your Echosaw account profile including subscription tier, email, organization membership, and trial status.(none)

Workflow

Follow these steps to analyze media with Echosaw:

  1. Submit media — Use echosaw_analyze_media (local file) or echosaw_analyze_media_url (remote URL) to submit media for analysis. The tool returns a mediaId and jobId.
  2. Poll status — Call echosaw_check_job_status with the mediaId to monitor progress. The job progresses through states: PENDING → PROCESSING → COMPLETE. If still processing, wait a minute or two and check again.
  3. Get results — Once the status is COMPLETE, call echosaw_get_analysis_results to retrieve the full intelligence report including summaries, transcripts, detected entities, and other outputs.
  4. Download source media — Optionally call echosaw_download_media to get a presigned download URL for the source media file (valid for 1 hour).
  5. Search your library — Use echosaw_search_media to find previously analyzed media by topic, content, or keyword.
  6. Browse your library — Use echosaw_list_media to see all media items in your library.
  7. Check your account — Use echosaw_get_profile to see your subscription tier, trial status, and account details.

Example Conversation

  • "Analyze the video at /Users/me/Downloads/interview.mp4" → calls echosaw_analyze_media, returns a mediaId
  • "What's the status of that analysis?" → calls echosaw_check_job_status
  • "Show me the results" → calls echosaw_get_analysis_results for the full intelligence report
  • "Get me a download link" → calls echosaw_download_media for a presigned URL
  • "Search my media for anything about product launches" → calls echosaw_search_media
  • "What media do I have in my library?" → calls echosaw_list_media
  • "What plan am I on?" → calls echosaw_get_profile

Supported Formats

FormatTypeNotes
MP4VideoPrimary video format; max duration 210 minutes (varies by tier)
MP3AudioPrimary audio format; max duration 210 minutes (varies by tier)
JPEGImagePrimary image format

Additional supported formats via the MCP server: MOV, AVI, WebM, MKV (video); WAV, FLAC, AAC, OGG, M4A (audio); PNG, GIF, WebP, BMP, TIFF (image).

Pricing

Echosaw offers a free trial of the web UI — no payment required:

  • 5 analysis uploads included
  • 14-day trial window
  • Full Premium-tier feature access during trial
  • Start a trial at echosaw.com by entering your email
  • Note: The free trial applies to the web interface only. MCP server access requires a paid plan (Developer, Growth, Pro, or Agency) with an API key.

Subscription tiers (monthly billing plus per-minute usage):

TierMonthlyAudio UsageAudio + Video Usage
Developer$49/mo$0.37/min$0.58/min
Growth$99/mo$0.32/min$0.53/min
Pro$149/mo$0.27/min$0.48/min
Agency$499/mo$0.22/min$0.43/min

For full pricing details and plan comparison, visit echosaw.com/pricing.

Deprecated local install: npm install -g @echosaw/mcp-server (stdio, API key auth). Use the remote server instead.

Authentication (Remote Server — Recommended)

The remote MCP server at https://mcp.echosaw.com uses OAuth 2.0 for authentication. MCP clients that support OAuth (such as Claude Desktop, claude.ai, and Claude Code) will handle the authentication flow automatically.

No API key configuration is needed — the OAuth flow connects to your Echosaw account directly.

Authentication (Local Server — Deprecated)

  1. Get an API key — Subscribe to a Developer, Growth, Pro, or Agency plan at echosaw.com/pricing. Your API key is provided in the welcome email and shown once (it is not recoverable after that).
  2. Set the environment variable — Configure ECHOSAW_API_KEY in your MCP client:
{
  "mcpServers": {
    "echosaw": {
      "command": "echosaw-mcp",
      "env": {
        "ECHOSAW_API_KEY": "your-api-key"
      }
    }
  }
}

The same API key works for both the MCP server and the REST API. Authentication uses the API key only — no additional Cognito/JWT tokens are required.

Response Format

All tools return a standardized JSON response envelope:

FieldTypeDescription
successbooleanWhether the operation succeeded
toolstringThe tool that produced this response
responseVersionstringResponse schema version (currently "1.0")
dataobjectTool-specific result data
messagestring?Human-readable summary
errorstring?Error description (when success is false)
nextActionobject?Suggested next tool to call

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.85%
按下载量换算1,196

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills