CoreWise
Server Details
Extract structured insights from videos, podcasts, articles, and PDFs with multi-model AI
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 3 of 3 tools scored.
Each tool serves a unique, non-overlapping purpose: starting an extraction, polling for results, and searching public extractions.
All tools follow a consistent verb_noun snake_case pattern (extract_url, get_extraction, search_public_extractions), making them predictable.
Three tools is an ideal scope for an extraction service, covering the essential workflow without unnecessary bloat.
The set covers the full lifecycle of extraction initiation, retrieval, and community search. Missing features like user extraction management or quota checks are minor given the focused domain.
Available Tools
3 toolsextract_urlAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The video, podcast, article, or PDF URL to extract insights from. | |
| models | No | Which AI models to run (1-6). Default: ['claude', 'gemini']. More models cost more time. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses behavior: async nature, initialization timing (up to 2 minutes), extraction duration (1-7 minutes), polling recommendation, result contents (synthesis and per-model summaries), authentication requirement (API key), and quota consumption. No gaps or contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single paragraph of about 100 words, front-loading the core function and then efficiently covering timing, polling, results, auth, and cost. Every sentence adds value with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For an async extraction tool with no output schema and two parameters, the description covers all necessary context: immediate return type, timing expectations, polling method, result contents, authentication, and quota. It is fully sufficient for an agent to correctly invoke and follow up.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with both parameters described. The description adds no additional semantic details beyond what the schema provides (url and models). The baseline is 3 due to high schema coverage, and description does not enhance parameter meaning further.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it starts an AI extraction for specific URL types (YouTube, podcast, article, PDF) on CoreWise. The verb 'Start' and resource 'extraction' are specific, and it distinguishes from siblings by mentioning polling with get_extraction and not being a search tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly guides use by stating it returns an extraction_id for polling and that get_extraction is for checking status. It also mentions the quota cost and API key requirement, but does not explicitly state when not to use or compare to search_public_extractions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_extractionAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| extraction_id | Yes | The extraction id returned by extract_url. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but description thoroughly covers behavioral traits: polling behavior, response structure with specified fields (JSON object with summary, takeaways, highlights, notable quotes, per-model markdown summaries), and auth conditions for own vs public extractions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three efficient sentences: first states purpose, second gives usage guidance, third lists contents and access conditions. Front-loaded, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple retrieval tool with one parameter and no output schema, the description covers all necessary aspects: purpose, when to poll (polling logic), what's in the response, and access scope (own vs public). Complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 100% coverage for the single parameter extraction_id, but description adds useful context: confirms it comes from extract_url and implies it's a string identifier. Adds modest value beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb (get), resource (extraction), and method (by id). It distinguishes from siblings: extract_url creates extractions, search_public_extractions searches, while this retrieves a specific extraction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit polling guidance ('poll every 20-30 seconds') and indicates when status is 'completed'. Mentions authentication requirements for own extractions vs public. No explicit exclusion of alternatives, but context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_public_extractionsAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 10, max 25). | |
| query | Yes | Search terms matched against titles and content. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses return values (titles, snippets, share URLs) and that no API key is needed. However, it does not mention error handling, sorting, pagination details beyond the limit parameter, or behavior when no results are found.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences front-loaded with purpose, no fluff, and every sentence adds value. It is appropriately sized for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 2 parameters, no output schema, and no annotations, the description covers purpose, return type, use case, and authentication. It lacks pagination or error details but is fairly complete for a simple search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (both parameters described). The description adds no new parameter information beyond what is in the schema. For instance, the query parameter description in schema already says 'Search terms matched against titles and content'. So baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Search' and the resource 'CoreWise's public community library of extractions', listing content types and stating it returns titles, snippets, and share URLs. It distinguishes itself from siblings (extract_url, get_extraction) by focusing on searching existing extractions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says it is 'useful to check whether a video has already been extracted before starting a new extraction', providing clear context. It also notes 'No API key required'. While it doesn't explicitly name alternatives, the sibling tool names and the context imply when to use this vs extract_url or get_extraction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!