patchwork-mcp-server
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., "@patchwork-mcp-serverShow me failing CI checks on patch 14553325"
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.
patchwork-mcp-server
A Model Context Protocol (MCP) server that exposes the Patchwork REST API to LLM-based coding agents (Claude Code, Claude Desktop, Cursor, etc.).
It is a thin, read-only wrapper around /api/1.2/ so you can ask the
agent things like:
"What's the state of my latest
seg6:series on netdev?""Show me failing CI checks on patch 14553325."
"List the cover-letter thread for series 1089407."
"Find the patch with Message-Id
20260505-seg6-mobile-v2-0-...."
Without this server, the same questions either require a working
~/.pwclientrc (which has trouble with CI checks and comment threads)
or hand-rolled curl against the REST API.
Install
Requires Python 3.10+. Install with uv:
# From PyPI (preferred once published)
uv tool install patchwork-mcp-server
# From a local checkout
uv tool install .
# From a Git remote
uv tool install git+https://github.com/higebu/patchwork-mcp-serverThe package installs a patchwork-mcp-server executable into ~/.local/bin/. To
refresh an existing install after editing source locally:
uv tool install --reinstall .Related MCP server: Gerrit MCP Server
Configuration
Variable | Default | Purpose |
|
| Base URL of the Patchwork instance |
|
| REST API version segment |
Read-only access to public Patchwork instances needs no credentials.
Connect to Claude Code
After uv tool install, the executable is on your PATH, so registration
needs no path:
claude mcp add patchwork-mcp-server -- patchwork-mcp-serverFor Claude Desktop, add it to ~/.config/claude/claude_desktop_config.json:
{
"mcpServers": {
"patchwork": {
"command": "patchwork-mcp-server"
}
}
}Tools
Tool | Purpose |
| List Patchwork projects on the instance. |
| Look up patches/covers by Message-Id (works across projects). |
| Series with every patch's state, delegate, archived flag, check summary. |
| Single patch with submitter, tags, series links, check summary. |
| CI checks for a patch (checkpatch, build_*, sashiko-*, contest, ...). Optional |
| Comment thread on a cover letter or patch (time-ordered, body preview). |
| Recent cover letters on a project, optional submitter filter, optional revision collapse. |
| Substring search over patch names, with project/state/submitter filters. |
Example interaction
What's the state of my SRv6 Mobile series on netdev?
Behind the scenes the agent calls:
find_by_msgid("20260505-seg6-mobile-v2-0-9e8022bdfdb6@gmail.com")to discover series id1089407onnetdevbpf.get_series(1089407)for the per-patch state table.get_checks(<lead_patch>, fail_only=True)to triage CI.get_comments("cover", 14117478)to read the thread.
Development
cd patchwork-mcp-server
uv sync --group dev
just check # ruff lint + format check + pytestjust release patch bumps the version, regenerates CHANGELOG.md via
git-cliff, and tags locally. Push the tag to trigger the PyPI release
workflow.
License
MIT
Available Tools
8 toolsfind_by_msgidA
Look up patches and cover letters by Message-Id across all projects.
A single Message-Id can appear under multiple projects (e.g. netdevbpf and linux-kselftest). Use this to discover the projects + series ids before drilling in.
| Name | Required | Description | Default |
|---|---|---|---|
| msgid | Yes | Message-Id with or without angle brackets |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that the tool looks up across all projects and that results can include multiple projects. It does not cover error behavior, rate limits, or authentication, but for a simple lookup tool the core behavior is adequately described.
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 two sentences long, front-loads the purpose, and contains no filler. Every sentence adds value: the first states the action, the second explains its cross-project nature and use case.
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 tool with one parameter and no output schema, the description is mostly complete. It explains the cross-project behavior and offers usage guidance. It does not describe the return format, but given its role as a discovery tool, the current description is sufficient.
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 input schema covers the only parameter (msgid) with a description about angle brackets. The tool description does not add new parameter details beyond restating the schema. Since schema coverage is 100%, a baseline score of 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 tool's purpose: 'Look up patches and cover letters by Message-Id across all projects.' It specifies the resource (patches and cover letters), the key (Message-Id), and the scope (across all projects), which distinguishes it from siblings like get_patch and get_series that likely operate within a single project.
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 guidance: 'Use this to discover the projects + series ids before drilling in.' It explains that a single Message-Id can appear under multiple projects, which informs usage. However, it does not explicitly state when not to use this tool or list alternatives, though the sibling names imply other tools for different purposes.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_checksA
Get CI check results for a patch (checkpatch, build_*, sashiko-*, contest, ...).
Pair with get_patch's check_summary to triage failing series quickly.
| Name | Required | Description | Default |
|---|---|---|---|
| patch_id | Yes | ||
| fail_only | No | Return only checks in 'fail' or 'warning' state |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description does not disclose behavioral traits such as required permissions, rate limits, or non-obvious side effects. The description alone lacks transparency for responsible selection.
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?
Two concise sentences, front-loaded with purpose and examples, followed by a practical usage tip. 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?
Has output schema, so return values are covered. However, given the tool's potential complexity, description could mention result variety or filtering options beyond fail_only.
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 50% (fail_only has a description, patch_id does not). The description does not add meaning beyond the schema; baseline 3 applies with no extra value.
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 it retrieves CI check results for a patch and lists examples like checkpatch and build_*. However, it does not explicitly differentiate from siblings like get_patch or search_patches.
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?
Suggests pairing with get_patch's check_summary for triaging failing series, providing a clear use context. No explicit when-not-to-use instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_commentsB
Get the comment thread on a cover letter or a patch, time-ordered.
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | Comments target type | |
| id | Yes | Cover-letter id or patch id | |
| preview_lines | No | Lines of body to include per comment (use 0 for no body) |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden of behavioral disclosure. It mentions 'time-ordered' but lacks details on read-only nature, auth requirements, rate limits, pagination, or empty results handling. With 0 annotations, this is insufficient.
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?
A single sentence that front-loads the core purpose with no wasted words. It is the ideal conciseness for a simple tool.
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?
The description covers the basic functionality and ordering, but lacks usage guidance and behavioral transparency. With an output schema, return values are covered, but overall completeness is adequate with clear gaps.
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 description coverage is 100%, so the schema already explains each parameter. The description adds 'time-ordered' which relates to output ordering, not parameter semantics. Since coverage is high, 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 'Get' and the resource 'comment thread on a cover letter or a patch', and adds ordering behavior. It is distinct from siblings like get_patch or get_series, but does not explicitly differentiate from sibling 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?
No guidance on when to use this tool versus alternatives like get_patch or search_patches. The description does not provide context for when comment retrieval is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_patchC
Get a single patch with submitter, delegate, state, tags, and check summary.
| Name | Required | Description | Default |
|---|---|---|---|
| patch_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description is the sole source of behavioral info. It does not disclose side effects, authentication needs, rate limits, or specifics beyond the return fields. The read operation is implied but not explicitly stated as non-destructive.
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 very concise (one sentence) with no wasted words. However, it omits important details, making it borderline under-specified. Conciseness slightly suffers from insufficient content.
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's simplicity (single parameter, no output schema), the description covers the basic purpose and output fields. However, it lacks completeness in parameter explanation and usage context, leaving gaps for correct invocation.
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 description coverage is 0%, and the description adds no context about the required parameter 'patch_id'. It does not explain what a patch_id is, how to obtain it, or its format. The description fails to compensate for the schema's lack of parameter documentation.
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 action (Get), the resource (a single patch), and specifies included fields (submitter, delegate, state, tags, check summary). It effectively differentiates from sibling tools like search_patches (search) and list_projects (list).
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?
No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, context for use, or exclusion criteria. The agent receives no direction for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_seriesA
Get a series with every patch's state, delegate, and archived flag.
Use this after find_by_msgid to see the whole patchset at once.
| Name | Required | Description | Default |
|---|---|---|---|
| series_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states what data is returned (patch state, delegate, archived flag) but does not explicitly mention side effects, error conditions, or idempotency. Since it is a get operation, the description is adequate but not thorough.
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?
Two sentences, front-loaded with the primary purpose in the first sentence and usage guidance in the second. No unnecessary words, every sentence adds value.
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 the return data and usage context. Minor gaps exist (e.g., error handling), but overall it provides sufficient context for an AI agent to understand the tool's role.
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 description coverage is 0% for the only parameter (series_id), and the description does not explain this parameter at all. The parameter's meaning is entirely left to inference from the parameter name and tool name, which is insufficient for an AI agent.
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 uses the verb 'Get' and specifies the resource 'series with every patch's state, delegate, and archived flag', clearly stating what the tool returns. It distinguishes itself from siblings by mentioning 'whole patchset', implying it is for retrieving a complete series after finding by message ID.
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?
Explicitly instructs to 'Use this after find_by_msgid to see the whole patchset at once,' providing clear context for when to use this tool versus alternatives. This directly references a sibling tool and explains the appropriate workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_projectsA
List Patchwork projects available on the configured instance.
Returns id, link_name (used as ?project= filter), display name, and list_id.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
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 indicates a read operation with no destructive hints, but does not disclose authentication needs, rate limits, or side effects. For a simple list tool, this is acceptable but minimal.
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?
Two sentences, front-loaded with purpose and output details. No unnecessary words – every sentence earns its place.
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 zero-parameter tool with an output schema present, the description is fully adequate: it states the action and the returned data. There is no missing context for proper invocation.
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?
With no parameters, schema coverage is 100% trivially. Baseline is 4. The description adds value by specifying the output fields, which goes beyond the empty 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 'List' and resource 'Patchwork projects', and specifies the returned fields (id, link_name, display name, list_id). It distinguishes from sibling tools which focus on patches, checks, or series.
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 implies usage for listing available projects, but does not explicitly state when to use versus alternatives or provide exclusions. Since no sibling tool lists projects, the context is clear but lacks explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recent_seriesC
List recent cover letters on a project, optionally filtered by submitter.
With collapse_revisions=True, older revisions of the same series name are dropped so you only see the latest version of each topic.
| Name | Required | Description | Default |
|---|---|---|---|
| project | Yes | Project link_name (e.g. 'netdevbpf', 'linux-kselftest') | |
| submitter | No | Submitter name/email substring (resolved via /people/) | |
| limit | No | ||
| collapse_revisions | No | Keep only the highest version per series name |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description mentions 'cover letters' but the tool name is 'recent_series', which may confuse. It explains collapse_revisions behavior but lacks details on ordering, recency criteria, and pagination despite having a limit parameter.
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?
Two sentences with no fluff, concise and to the point. Could be slightly more structured (e.g., separating purpose from collapse_revisions behavior), but efficient overall.
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 and an output schema, the description lacks details on what is returned (cover letters vs series), ordering, pagination behavior, and response structure beyond what the schema provides. Incomplete for agent decision-making.
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 75% (three of four parameters have descriptions). The description adds value by explaining collapse_revisions beyond its schema description, but does not explain the limit parameter, which has no schema description.
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 'List recent cover letters on a project', specifying verb, resource, and optional filter. However, it does not differentiate from sibling tools like get_series or search_patches.
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?
No guidance on when to use this tool vs alternatives. For example, it does not mention that get_series is for a specific series or that search_patches is for broader searches.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_patchesA
Search patches by name substring with optional project/state/submitter filters.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Substring matched against patch name | |
| project | No | Project link_name to scope the search | |
| state | No | State slug (e.g. 'new', 'changes-requested', 'accepted') | |
| submitter | No | Submitter name/email substring | |
| archived | No | Filter by archived flag | |
| limit | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
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 describes the search and filter functionality but does not disclose behavioral traits like ordering, pagination, read-only nature, or any side effects. The limit parameter suggests pagination but this is not addressed.
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, efficient sentence that front-loads the core action and key filters. No unnecessary words, making it easy to parse quickly.
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 6 parameters (1 required), no annotations, and an existing output schema, the description is adequate but not thorough. It covers the main filters but omits mention of archived and limit parameters. The output schema mitigates the need to describe returns, but the description could still be more 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 description coverage is high (83%), with most parameters having descriptions in the schema. The description adds a summary of key filters (project, state, submitter) but does not provide additional meaning beyond what the schema already conveys. Therefore, it meets the baseline for high coverage.
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 searches patches by name substring with optional filters (project, state, submitter). The verb 'search' and resource 'patches' are specific, and the primary filtering method is mentioned, distinguishing it from sibling tools like get_patch or find_by_msgid.
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 implies usage when searching by name substring with filters, but does not explicitly state when not to use this tool or suggest alternatives (e.g., get_patch for a specific patch, find_by_msgid for message ID). The context signals show siblings but no guidance is provided, so usage 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.
8 tool updates
v0.1.0- First observed
find_by_msgid - First observed
get_checks - First observed
get_comments - First observed
get_patch - First observed
get_series - First observed
list_projects - First observed
recent_series - First observed
search_patches
TDQS
Each tool targets a distinct operation: lookup by message ID, get patch details, get series, get comments, get checks, list projects, list recent series, and search patches. No two tools have overlapping purposes.
Tools mostly follow a verb_object pattern with underscores (e.g., get_patch, list_projects). 'recent_series' deviates slightly as adjective_object, but overall style is consistent and clear.
With 8 tools, the server covers core interactions without being too sparse or overwhelming. Each tool serves a clear need within the Patchwork domain.
The set covers essential read operations: project listing, patch/series retrieval, comments, checks, and search. Missing creation or modification tools, but that aligns with a read-focused MCP server.
Maintenance
Related MCP Connectors
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
The Cortex MCP server provides read-only access to real-time engineering context from the Cortex developer portal, allowing AI coding assistants to answer natural language questions about your organization's catalog (microservices, libraries, domains, teams, infrastructure), scorecards (engineering standards and best practices), initiatives (goals and deadlines), and Engineering Intelligence metrics. It includes tools for querying documentation, tracking personal entities, and accessing AI-assisted insights across the entire Cortex ecosystem.
Read-only MCP server for turva.dev, an agent-readiness audit and advisory service.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceMCP server for OSIDB (Red Hat Product Security's vulnerability management system). Enables read-only querying of flaws, affects, trackers, and status via natural language from MCP clients like Cursor or Claude Desktop.2MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that enables language models to query and manage Gerrit code reviews via the REST API.1Apache 2.0
- AlicenseNot gradedqualityFmaintenanceA read-only MCP server that exposes Quickwit log search and aggregations to LLM clients, enabling natural language log investigation.Apache 2.0
- AlicenseNot gradedqualityBmaintenanceMCP server enabling structured search and querying over Linux kernel mailing list archives (lore.kernel.org) for LLM-powered developer tools.4MIT
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/higebu/patchwork-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server