io.github.ryanportfolio/corewise
Official3 toolsCoreWise
Extract structured insights from videos, podcasts, articles, and PDFs with multi-model AI
Extract structured insights from videos, podcasts, articles, and PDFs using multi-model AI.
Captured live from the server via tools/list.
extract_url
Start an AI extraction of a YouTube video, podcast, article, or PDF URL on CoreWise. Returns an extraction_id immediately after initialization. Initialization normally takes a few seconds but can take up to 2 minutes for videos without captions or for PDFs. The extraction itself then runs for 1-7 minutes: poll with get_extraction every 20-30 seconds until status is 'completed'. Results include a cross-validated synthesis plus per-model summaries. Requires an API key (create one at corewise.video, Profile page, 'API & MCP Keys'). Each call consumes one extraction from the key owner's monthly quota.
Parameters (2)
- urlstringrequired
The video, podcast, article, or PDF URL to extract insights from.
- modelsarray
Which AI models to run (1-6). Default: ['claude', 'gemini']. More models cost more time.
get_extraction
Get the status and results of a CoreWise extraction by id. While status is 'processing', poll every 20-30 seconds. When status is 'completed' the response contains the structured synthesis (JSON object: summary, takeaways, highlights, notable quotes) and per-model markdown summaries. Works on your own extractions (API key required) and on public community extractions.
Parameters (1)
- extraction_idstringrequired
The extraction id returned by extract_url.
search_public_extractions
Search CoreWise's public community library of extractions (videos, podcasts, articles, and PDFs already analyzed by other users). Returns titles, snippets, and share URLs. Useful to check whether a video has already been extracted before starting a new extraction. No API key required.
Parameters (2)
- querystringrequired
Search terms matched against titles and content.
- limitnumber
Max results (default 10, max 25).
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"corewise": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://corewise.video/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.