MCP Skills & Workflows
Curated agent playbooks and multi-step workflows on ToolYour MCP.
Skills (MCP resources)
Skills are markdown playbooks agents load once per session:
| Skill ID | Use when |
|---|---|
seo-site-audit | SEO analysis of a URL |
page-performance | Page speed / performance |
content-refresh | Content update recommendations |
document-pipeline | Document conversion with download URLs |
crawl-analysis | Link / crawl analysis |
list_skills() → load_skill("seo-site-audit") → invoke_tool(...)Workflows
run_workflow(workflowId, input) runs multiple API calls server-side:
| Workflow ID | Steps |
|---|---|
full-seo-audit | SEO analyze + page speed |
content-optimization | Content optimization API |
document-convert-pipeline | DOCX → PDF |
Workflow steps bill one request per underlying tool call, same as REST.
Partial failures return status: "partial" with completed steps and failedStep.
Example prompt
Load the SEO site audit skill, analyze https://example.com, and summarize top 5 fixes.
Your agent should call load_skill first, then discover_tools / invoke_tool as the playbook describes.