qwen-omni-mcp
The qwen-omni-mcp server empowers AI agents with multimodal understanding of video, image, audio, and combined audio‑video content via Alibaba Cloud's Bailian platform using Qwen models.
Native Video Understanding: Analyze videos with
qwen3.7-plusdirectly from a URL or local file (no client‑side frame extraction). Supports custom prompts and configurable response length.Image Understanding: Describe, perform Q&A, or OCR on images using
qwen3.7-plus, from URL or local file, with custom prompts.Audio Understanding: Transcribe, summarize, or analyze speech and sounds in various formats (mp3, wav, flac, ogg, m4a, aac) using
qwen3.5-omni-plus.Audio‑Video Understanding: Combined analysis of a video's visuals and audio track with
qwen3.5-omni-plus.Local File Support: Upload local media (max 25MB) by providing the file path; files are base64‑encoded inline and validated by extension and magic‑byte signature.
Endpoint Status Check: Inspect configured API endpoint, model IDs, and timeout (API key redacted).
Click on "Install 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., "@qwen-omni-mcpSummarize the video at https://example.com/demo.mp4"
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.
qwen-omni-mcp
An MCP server that gives Claude Code and other AI agents video, image, audio, and audio-video understanding via Bailian (DashScope) using the multimodal Qwen3.8-Max and Qwen3.5-Omni models.
Qwen3.8-Max reads video natively — no client-side frame extraction. Qwen3.5-Omni adds native audio understanding (and audio-track awareness for video). Pass a public media URL or a local file path; the model does the rest. The server also ships MCP instructions that teach text-only agents to reach for these tools when they need to view/read media — while telling natively multimodal agents to prefer their own vision.
Highlights
Native video understanding — send a video URL or local file, get grounded analysis
Image understanding — describe, Q&A, OCR; doubles as the "eyes" for text-only agents whose file reader can't display images
Audio understanding — transcribe, summarize, analyze speech/sound (mp3/wav/flac/ogg/m4a/aac)
Audio-video understanding — analyze a video's visuals and its sound track together
Thinking control — optional per-call
thinking_budgeton every media tool; omitted = provider defaultLocal file support — pass a local path; files are sent inline as base64 (25MB guardrail)
npx-launchable — one line in your MCP client config
Related MCP server: qwen-vision-mcp
Install
No global install needed. Run directly with npx:
npx -y qwen-omni-mcpFor local development:
git clone <this-repo>
cd qwen-omni-mcp
npm install # also installs husky git hooks
cp .env.example .env # fill in DASHSCOPE_API_KEY
npm run dev # run from source via tsxConfiguration
All config is via environment variables (loaded from .env by dotenv):
Variable | Required | Default | Description |
| yes | — | Bailian API key |
| no |
| Model id for video/image analysis |
| no |
| Omni model id for audio/audio-video |
| no |
| OpenAI-compatible endpoint |
| no |
| Per-request timeout in seconds |
Get a key at https://bailian.console.aliyun.com/cn-beijing?tab=model#/api-key.
The Anthropic-compatible
/apps/anthropicendpoint does not support video input, so this server uses the OpenAI-compatible endpoint.
Use with Claude Code
Add to your MCP client config:
{
"mcpServers": {
"qwen-omni-mcp": {
"command": "npx",
"args": ["-y", "qwen-omni-mcp"],
"env": {
"DASHSCOPE_API_KEY": "your-key"
}
}
}
}For local development without publishing:
{
"mcpServers": {
"qwen-omni-mcp": {
"command": "npx",
"args": ["tsx", "src/index.ts"],
"env": { "DASHSCOPE_API_KEY": "your-key" }
}
}
}Tools
Tool | Description |
| Analyze a video (URL or local file) with a custom prompt |
| Analyze an image (URL or local file) with a custom prompt |
| Analyze an audio file (URL or local) with a custom prompt (Omni) |
| Analyze a video's visuals + sound (URL or local) with a prompt (Omni) |
| Show configured endpoint/model (key redacted) |
Each media tool accepts a public http/https URL or a local file path. Local files are read and sent inline as base64, with a 25MB guardrail (verified up to a 14MB video / ~18MB body on Qwen3.7-Plus, and an 8.8MB video / ~11.7MB base64 body on Qwen3.5-Omni, both HTTP 200). Files larger than 25MB must be hosted at a public URL instead. Local input is validated by extension + magic-byte signature before encoding, so non-media files are rejected.
Each media tool also accepts an optional thinking_budget (positive integer): the maximum tokens the model may spend thinking before answering. Omit it to use the provider default (thinking on at full budget for Qwen3.8 hybrid-thinking models). Thinking tokens are billed but do not count against max_tokens, which limits the answer itself.
analyze_audio / analyze_audio_video use the omni model (QWEN_OMNI_MODEL, default qwen3.5-omni-plus) and force text-only output. Audio is sent as an input_audio block in the data:;base64,<b64> form with a format field (mp3/wav/flac/ogg/m4a/aac).
Development
npm run typecheck # strict tsc
npm run lint # eslint, --max-warnings 0
npm run format:check # prettier
npm test # unit + mocked e2e (no API cost)
npm run build # emit dist/
LIVE=1 npm run test:live # real API calls (costs tokens)CI (.github/workflows/ci.yml) runs the same gates on Node 20/22. secrets-scan.yml runs gitleaks. smoke-live.yml (manual / weekly) runs one real image call.
See AGENTS.md for the full set of agent rules (never bypass hooks, never commit secrets, etc.).
License
MIT
Available Tools
5 toolsanalyze_audioA
Listen to and analyze an audio file using Qwen3.5-Omni (qwen3.5-omni-plus, native audio understanding). Use this whenever you need to hear audio you cannot process natively. Pass a public URL (http/https) or a local file path; local files are sent inline as base64 (25MB guardrail, mp3/wav/flac/ogg/m4a/aac).
| Name | Required | Description | Default |
|---|---|---|---|
| question | No | Question or prompt about the audio | What is this audio about? Describe it in detail. |
| audio_url | Yes | Public URL or local file path of the audio to analyze | |
| max_tokens | No | Maximum tokens in the response | |
| thinking_budget | No | Maximum tokens the model may spend on thinking before answering (Qwen hybrid-thinking models). Omit to use the provider default. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. It discloses meaningful behavioral traits: accepted URL/file paths, inline base64 sending, a 25MB guardrail, supported formats, and the specific model. It does not mention response format or potential limitations, but for a read-only analysis tool the disclosed constraints are substantial.
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 compact, front-loaded with the core action, and every sentence earns its place. It conveys purpose, usage context, and key input constraints in just two sentences without redundancy.
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 absence of an output schema and annotations, the description covers the essential context: what the tool does, when to use it, accepted input forms, formats, and size limits. It does not describe the response structure, but that may be predictable for an analysis tool. The level of detail is appropriate for the tool's complexity.
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 value beyond the schema by explaining that local files are sent inline as base64, specifying the 25MB guardrail, and listing supported file extensions. This operational detail is not present in the schema's description of audio_url.
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 names a specific verb+resource ('Listen to and analyze an audio file') and identifies the underlying model (Qwen3.5-Omni). It clearly distinguishes from sibling tools like analyze_image and analyze_audio_video by scoping to audio only and mentioning native audio understanding.
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 'Use this whenever you need to hear audio you cannot process natively,' providing clear when-to-use context. However, it does not mention when not to use it or name alternatives, such as analyze_audio_video for files that also contain video.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
analyze_audio_videoA
Watch and listen to a video (visuals AND its audio track) using Qwen3.5-Omni (qwen3.5-omni-plus, native audio+video understanding). Use this when what is said or heard in the video matters. Pass a public URL (http/https) or a local file path; local files are sent inline as a base64 data URL (25MB guardrail).
| Name | Required | Description | Default |
|---|---|---|---|
| question | No | Question or prompt about the video | Describe what happens in this video, including the visuals and the sound. |
| video_url | Yes | Public URL or local file path of the video to analyze | |
| max_tokens | No | Maximum tokens in the response | |
| thinking_budget | No | Maximum tokens the model may spend on thinking before answering (Qwen hybrid-thinking models). Omit to use the provider default. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does a strong job: it names the underlying model (Qwen3.5-Omni), states native audio+video understanding, and discloses how local file paths are handled (base64 data URL) plus a 25MB guardrail. It omits some details like authentication or output structure, but covers important operational behavior well.
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 sentences, each earning its place: the first defines what the tool does, the second explains when to use it, and the third details input formats and a size constraint. No filler or repetition, and the most important information is front-loaded.
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 4 parameters fully covered in the schema, no output schema, and no annotations, the description is fairly complete: it covers the task, model, input flexibility, and a key constraint. It does not explain the output format or potential errors, but for a Q&A-style multimodal tool, the expectations are reasonably clear.
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 baseline is 3, but the description adds genuinely useful semantics beyond the schema: it clarifies that video_url accepts public URLs or local paths, that local files are sent inline as base64, and explicitly notes the 25MB guardrail. This supplements the raw property definitions meaningfully.
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 states a specific action ('Watch and listen') and resource ('a video'), and explicitly includes both visuals and audio track, which immediately distinguishes this tool from analyze_video and analyze_audio. The verb+resource combination is precise and independently meaningful.
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?
Gives explicit usage criterion ('Use this when what is said or heard in the video matters'), which clearly implies when this tool should be chosen over visual-only or audio-only siblings. However, it does not explicitly name alternatives or state when not to use it, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
analyze_imageA
View, read, or analyze an image using Qwen3.8-Max (native multimodal). Use this whenever you need to see an image you cannot view natively (e.g., your file reader returns '[Unsupported Image]'). Pass a public URL (http/https) or a local file path; local files are sent inline as a base64 data URL (25MB guardrail).
| Name | Required | Description | Default |
|---|---|---|---|
| question | No | Question or prompt about the image | Describe this image in detail. |
| image_url | Yes | Public URL or local file path of the image to analyze | |
| max_tokens | No | Maximum tokens in the response | |
| thinking_budget | No | Maximum tokens the model may spend on thinking before answering (Qwen hybrid-thinking models). Omit to use the provider default. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that local files are sent inline as base64 data URLs with a 25MB guardrail, which is useful behavioral context. However, it does not mention return format, side effects, or error handling, leaving significant behavioral aspects undisclosed.
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, each earning its place: purpose, when to use, and input details. It is front-loaded with the action and avoids redundancy. No fluff or excessive detail.
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?
There is no output schema, so the description should convey the expected output implicitly. It adequately covers the main input, use case, and a key constraint (25MB guardrail). However, it omits response format and potential error conditions, which would be useful for a tool with no output schema. Overall, it is sufficiently complete for its complexity.
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 meaningful detail for `image_url`, explaining that it can be a public URL or local path, and that local files are base64-encoded with a size limit. It also names the underlying model, which informs parameter behavior. This goes beyond the 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 'View, read, or analyze an image' and identifies the specific model (Qwen3.8-Max). It distinguishes from sibling tools that target video/audio, making the resource and action unambiguous. The concrete example ('[Unsupported Image]') further clarifies the purpose.
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 'Use this whenever you need to see an image you cannot view natively', providing a clear condition for use. It gives a concrete scenario but does not name sibling tools as alternatives, though the image focus implicitly excludes video/audio. No explicit 'when not to use' beyond the native viewing case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
analyze_videoA
Watch and analyze a video using Qwen3.8-Max (native multimodal). Use this whenever you need to see a video you cannot view natively. The model reads the video natively — no client-side frame extraction. Pass a public URL (http/https) or a local file path; local files are sent inline as a base64 data URL (25MB guardrail).
| Name | Required | Description | Default |
|---|---|---|---|
| question | No | Question or prompt about the video | Describe what happens in this video in detail. |
| video_url | Yes | Public URL or local file path of the video to analyze | |
| max_tokens | No | Maximum tokens in the response | |
| thinking_budget | No | Maximum tokens the model may spend on thinking before answering (Qwen hybrid-thinking models). Omit to use the provider default. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses a key behavioral trait: 'The model reads the video natively — no client-side frame extraction,' which sets expectations about processing. It also discloses the 25MB base64 guardrail for local files. While it doesn't cover error handling or response format, for a read-only analysis tool 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 efficiently written in four sentences, each serving a purpose: purpose, usage, processing behavior, and input format. It is front-loaded with the core function, and no words are wasted. This is a model of concise, informative documentation.
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 lack of output schema, the description is very close to fully complete. It explains what the tool does, when to use it, how it processes, and input constraints. The only small gap is not explicitly stating the return format, but that is implied by the question parameter and the analysis context. Overall, it is highly informative for a tool without annotations.
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 meaningful info beyond the schema: it clarifies that video_url can be http/https or a local path, and that local files are sent as base64 data URL with a 25MB limit. This extra context helps the agent understand the parameter's constraints and behavior.
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 states the exact function: 'Watch and analyze a video using Qwen3.8-Max (native multimodal).' It clearly distinguishes this tool from siblings like analyze_image and analyze_audio, focusing specifically on video. The verb 'watch and analyze' plus resource 'video' makes the purpose unambiguous.
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 'Use this whenever you need to see a video you cannot view natively,' providing clear when-to-use guidance. It also gives practical input guidelines (public URL or local file path, base64 inline, 25MB guardrail). It does not explicitly mention alternatives or when not to use, but the context is sufficiently clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_endpoint_statusA
Check the configured Bailian endpoint, model, and timeout. The API key is redacted in the output.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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 that the API key is redacted in the output, a key behavioral trait. It does not mention side effects or network calls, but for a simple read-only check, this is sufficient.
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 sentence that conveys the purpose and a key behavior (API key redaction). 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?
Given no parameters and no output schema, the description provides the core functionality and one output detail. It is sufficient for a simple check tool, though it could mention return format.
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?
The tool has zero parameters, and schema coverage is 100%, so the baseline is 4. The description adds nothing about parameters, but none exist.
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 tool checks the configured Bailian endpoint, model, and timeout, with a verb ('check') and specific resources (endpoint, model, timeout). It distinguishes itself from video analysis and capabilities tools.
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 does not provide when or when not to use this tool, nor does it mention alternatives. However, the context signals show distinct sibling tools, so usage context is implied but not explicit.
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. Dates show when Glama detected each change.
4 tool updates
v0.3.1- Changed
analyze_audio1 field changed- added
Input schema / properties / thinking_budgetAdded value: +{ + "description": "Maximum tokens the model may spend on thinking before answering (Qwen hybrid-thinking models). Omit to use the provider default.", + "exclusiveMinimum": 0, + "type": "integer" +}
- Changed
analyze_audio_video1 field changed- added
Input schema / properties / thinking_budgetAdded value: +{ + "description": "Maximum tokens the model may spend on thinking before answering (Qwen hybrid-thinking models). Omit to use the provider default.", + "exclusiveMinimum": 0, + "type": "integer" +}
- Changed
analyze_image1 field changed- added
Input schema / properties / thinking_budgetAdded value: +{ + "description": "Maximum tokens the model may spend on thinking before answering (Qwen hybrid-thinking models). Omit to use the provider default.", + "exclusiveMinimum": 0, + "type": "integer" +}
- Changed
analyze_video1 field changed- added
Input schema / properties / thinking_budgetAdded value: +{ + "description": "Maximum tokens the model may spend on thinking before answering (Qwen hybrid-thinking models). Omit to use the provider default.", + "exclusiveMinimum": 0, + "type": "integer" +}
9 tool updates
v0.3.0- Added
analyze_audio - Added
analyze_audio_video - Changed
analyze_image2 fields changed- changed
Input schema / properties / image_url / descriptionPrevious value: -"Public URL of the image to analyze"New value: +"Public URL or local file path of the image to analyze" - removed
Input schema / properties / image_url / formatRemoved value: -"uri"
- Changed
analyze_video2 fields changed- changed
Input schema / properties / video_url / descriptionPrevious value: -"Public URL of the video to analyze"New value: +"Public URL or local file path of the video to analyze" - removed
Input schema / properties / video_url / formatRemoved value: -"uri"
- Removed
compare_video_frames - Removed
extract_video_text - Removed
list_capabilities - Removed
summarize_video - Removed
video_qa
8 tool updates
v0.1.0- First observed
analyze_image - First observed
analyze_video - First observed
check_endpoint_status - First observed
compare_video_frames - First observed
extract_video_text - First observed
list_capabilities - First observed
summarize_video - First observed
video_qa
TDQS
Most tools are clearly distinct: image, audio, and video analysis have separate tools. The only potential confusion is between analyze_video and analyze_audio_video, but the descriptions clarify that analyze_audio_video explicitly handles audio tracks as well. check_endpoint_status is unrelated and unambiguous.
The primary tools follow a consistent analyze_<media_type> pattern (analyze_video, analyze_image, analyze_audio, analyze_audio_video). The utility tool check_endpoint_status deviates from this pattern but still follows the verb_noun structure. Overall, the naming is predictable and easy to navigate.
With 5 tools, the server is well-scoped for its purpose of multimodal analysis. It covers all major media types (image, audio, video, audio+video) and includes a utility check. The count is neither too thin nor bloated.
The tool set provides complete coverage for the stated domain of media analysis: images, audio, video, and video with audio. The endpoint status tool adds necessary operational visibility. There are no obvious missing operations for the server's purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Video, audio, and image processing for AI agents: convert, transcribe, upscale - 150+ operations.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
- lightgenOAuthapp.lightgen
Generate and edit images and create short videos inside Claude. Prepaid credits, no subscription.
FFmpeg as a service for AI agents: typed video editing tools, async jobs, downloadable outputs.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables Claude Code to analyze images using Qwen vision models (via DashScope) when the main model is text-only.-
- AlicenseNot gradedqualityCmaintenanceEnables text-only models like Claude Code to recognize images by calling Qwen vision models from DashScope, returning text descriptions for continued reasoning.MIT
- FlicenseNot gradedqualityCmaintenanceAdds vision capabilities to Claude Code by leveraging Aliyun DashScope's Qwen3.7-Flash model to analyze local images or image URLs and return textual insights.-
- AlicenseAqualityAmaintenanceEnables text-only AI coding agents to analyze images and videos via vision-capable models (Gemini, Grok, OpenRouter), returning text descriptions for reasoning.211MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sommio/qwen-omni-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server