aws-blackbelt-mcp-server
Fetches transcripts from YouTube videos of AWS Black Belt Online Seminars.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@aws-blackbelt-mcp-serversearch for AWS Lambda seminar transcript"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Coverage Report FileStmtsMissCoverMissingsrc/aws_blackbelt_mcp_server init.py00100% config.py100100% server.py19194%39src/aws_blackbelt_mcp_server/helpers init.py00100% path_resolver.py120100% src/aws_blackbelt_mcp_server/tools init.py00100% seminars.py80988%53, 129–130, 132, 191, 193, 205–206, 208tests init.py00100% test_config.py250100% test_server.py70100% tests/helpers init.py00100% test_path_resolver.py200100% tests/integration init.py00100% test_get_seminar_transcript.py55492%24–27 test_search_seminars.py490100% tests/tools init.py00100% test_seminars.py270100% TOTAL3041495%
AWS Black Belt MCP Server
A Model Context Protocol (MCP) server that provides search functionality for AWS Black Belt Online Seminars.
Tools
search_seminars: Search AWS Black Belt Online Seminars by keywordsget_seminar_transcript: Get transcript from seminar YouTube videos (Supported only in Japanese)
Current Information Sources
AWS Black Belt Online Seminars
PDF materials
YouTube videos
Seminar transcripts
Prerequisites
Python 3.10 or higher
uv package manager
Related MCP server: microCMS MCP Server
Configuration
Amazon Q Developer CLI
For use with Amazon Q Developer CLI, add the following configuration to your MCP settings file:
Workspace-level configuration:
.aws/amazonq/cli-agents/default.jsonUser-level configuration:
~/.aws/amazonq/cli-agents/default.json
Using uvx
{
"mcpServers": {
"aws-blackbelt-mcp-server": {
"command": "uvx",
"args": ["aws-blackbelt-mcp-server"]
}
}
}Using Docker
{
"mcpServers": {
"aws-blackbelt-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/konippi/aws-blackbelt-mcp-server"
]
}
}
}Basic Usage
Examples:
"Find AWS Black Belt seminars about machine learning"
"Get transcript from this seminar video: https://youtu.be/vWfTe5MHOIk"
Available Tools
2 toolsget_seminar_transcriptA
Get transcript from seminar video. Note: Supported only in Japanese.
Args: ctx: Context to access MCP features youtube_url: YouTube video URL language: Language code for transcript (default: "ja" for Japanese)
Returns: Seminar transcript
| Name | Required | Description | Default |
|---|---|---|---|
| language | No | Language code for transcript (e.g., 'ja') | ja |
| youtube_url | Yes | YouTube video URL |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it reveals a key limitation ('Supported only in Japanese') and states the return value ('Seminar transcript'). It does not disclose error behavior or output formatting, but the operation is a simple read-like retrieval, so these are minor gaps.
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 short and front-loaded with the purpose and the Japanese-only limitation. However, the 'ctx: Context to access MCP features' line is extraneous and not represented in the schema, which detracts from the overall structure and precision.
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 two-parameter tool with no output schema, the description covers the required purpose, arguments, and return value, plus the critical Japanese-only constraint. It is complete enough for an agent to invoke correctly, though it could briefly note what happens for non-Japanese videos.
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%, so the baseline is 3, but the description's Args section introduces 'ctx' as an argument even though it is not in the input schema. This could mislead an agent into attempting to pass an unsupported parameter. The other parameter descriptions mostly repeat the schema and add little meaningful semantics.
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 'Get transcript from seminar video', a specific verb plus resource. It is easily distinguished from the sibling search_seminars because 'get transcript' and 'search seminars' are semantically different actions.
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 provides an implied usage context: use this when a seminar transcript is needed, and it explicitly notes that it is supported only in Japanese. However, it does not explicitly compare against the sibling search_seminars or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_seminarsA
Search AWS Black Belt seminars by keyword.
Args: ctx: Context to access MCP features query: Search keyword (e.g., "machine learning", "lambda", "s3") sort_order: Sort order by published date - "desc" (newest first) or "asc" (oldest first) limit: Maximum number of results to return (default: 10, max: 50)
Returns: List of seminar information including title, date, PDF and YouTube links
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results | |
| query | Yes | Search keyword | |
| sort_order | No | Sort order | desc |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full transparency burden. It does well by stating that results are a list of seminar information including title, date, PDF and YouTube links, and it clarifies sort semantics. It stops short of explicitly stating that the operation is read-only or describing authentication/rate-limit behavior, but 'Search' makes the non-destructive nature reasonably clear.
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 well-structured with a one-line purpose, an Args section, and a Returns section. Every element earns its place, and the most important information is front-loaded. There is no redundant prose.
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 straightforward search tool, the description is largely complete: it covers purpose, all parameters with practical examples, and return content despite the lack of an output schema. The main missing piece is a pointer to get_seminar_transcript as the appropriate next step once a seminar is found, but this is not required to invoke the tool correctly.
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%, so the baseline is 3. The description adds genuine value beyond the schema by giving concrete query examples like 'machine learning', 'lambda', and 's3', clarifying that sort_order is by published date, and describing the return shape. This helps an agent choose appropriate parameter values.
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 opens with 'Search AWS Black Belt seminars by keyword,' giving a specific verb and resource. This clearly contrasts with the sibling tool get_seminar_transcript, which presumably retrieves content for an already-identified seminar rather than searching for seminars.
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 intended use is implied: use this tool when you need to find AWS Black Belt seminars by keyword. However, it never explicitly mentions when to use get_seminar_transcript instead, and there is no guidance about follow-up steps after searching.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
v0.2.1- First observed
get_seminar_transcript - First observed
search_seminars
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one searches for seminar metadata, the other retrieves a transcript from a video URL. There is no overlap or ambiguity between them.
Both tool names follow a consistent verb_noun snake_case pattern (search_seminars, get_seminar_transcript). The naming is predictable and clear.
With only two tools, the server feels minimal but not unreasonable for its narrow domain. It is on the thin end of the scale, leaving limited functionality but still a coherent set.
The server covers the core workflow of finding seminars and accessing their transcripts. A minor gap is the lack of a way to list all seminars without a keyword or fetch seminar details directly, but most use cases are met.
Maintenance
Related MCP Connectors
An MCP server that provides tools to discover and retrieve podcast episodes transcripts.
The AWS Knowledge MCP server is a fully managed remote Model Context Protocol server that provides real-time access to official AWS content in an LLM-compatible format. It offers structured access to AWS documentation, code samples, blog posts, What's New announcements, Well-Architected best practices, and regional availability information for AWS APIs and CloudFormation resources. Key capabilities include searching and reading documentation in markdown format, getting content recommendations, listing AWS regions, and checking regional availability for services and features.
An MCP server that provides congressional transcripts
Related MCP Servers
- AlicenseCqualityCmaintenanceA Model Context Protocol server enabling product searches across e-commerce platforms, price history tracking, and product specification-based searches using natural language prompts.219MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol (MCP) compliant server that allows Large Language Models (LLMs) to search and retrieve content from microCMS APIs.2MIT
- AlicenseNot gradedqualityFmaintenanceA Model Context Protocol server that enables searching YouTube videos, retrieving and storing transcripts, and performing semantic search over video content without using the official YouTube API.35MIT
- AlicenseBqualityBmaintenanceA Model Context Protocol (MCP) server for structured understanding of RFC documents.782 npm4MIT