api-docs-mcp-server
api-docs-mcp-server
将 OpenAPI / Swagger 接口文档暴露为 MCP (Model Context Protocol) 工具 的服务端。
框架无关(零 NestJS / 框架依赖),提供两种接入形态:
stdio 模式(CLI):
npx -y api-docs-mcp-server@latest --source=...,免安装直接拉起,供 Agent 智能体(Claude Code / Cursor / 其他 MCP 客户端)通过mcpServers配置使用HTTP 模式:
createMcpHttpHandlerExpress 中间件 / 原生 Node http,自托管服务,供远程 MCP 客户端连接
特性
5 个 MCP 工具:概览 / 搜索 / 详情 / 全量导出 / 刷新缓存
双规范支持:OpenAPI 3.x 与 Swagger 2.0(自动归一化为 3.x 视图)
$ref 递归展开:接口详情中数据模型引用直接展开为可读结构(循环引用标记
$ref-cycle)多数据源:URL 下载或本地文件(
.json/.yaml/.yml),20MB 上限内置缓存:TTL 5 分钟、LRU 最多 10 个源,支持手动强制刷新(失败保留旧缓存)
可注入依赖:自定义 axios 实例 / logger / 缓存参数
Related MCP server: openapi-mcp-bridge
安装
要求 Node >= 18。
npm install api-docs-mcp-server终端用户无需安装:通过
npx -y api-docs-mcp-server@latest免安装直接运行(@latest保持最新版)。
快速开始
按使用场景二选一:
场景 | 推荐形态 |
本地 Agent(Claude Code / Cursor)直接接入 | stdio 模式 |
自托管服务,供远程 MCP 客户端调用 | HTTP 模式 |
完整示例:使用一个 OpenAPI 文档链接
以一个真实的 OpenAPI 文档链接为例,走一遍从接入到调用的完整流程。
1. 准备文档链接
以 Petstore 官方 OpenAPI 文档为例(其他任意 .json / .yaml / .yml 链接同理):
https://petstore.swagger.io/v2/swagger.json2. 接入 Agent(Claude Code / Cursor)
将链接作为默认文档源配置到 mcpServers:
{
"mcpServers": {
"petstore": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"api-docs-mcp-server@latest",
"--source=https://petstore.swagger.io/v2/swagger.json"
]
}
}
}3. 在对话中直接使用
配置完成后,Agent 即可基于该文档链接调用 MCP 工具:
用户提问 | Agent 触发的工具 | 返回结果 |
「这份文档里有哪些接口?」 |
| 接口总数、tags 分组统计 |
「查找用户登录的接口」 |
| 匹配的 path / summary / operationId |
「查看创建宠物接口的详细参数」 |
| 参数说明与 $ref 展开后的数据模型 |
临时切换文档:调用工具时传入
source参数即可覆盖默认链接,如{"source": "https://another.example.com/openapi.json"}。
方式一:stdio 模式(推荐,Agent 智能体接入)
无需安装到本地,直接通过 npx 拉起(@latest 保持最新版):
# 默认文档源为 URL
npx -y api-docs-mcp-server@latest --source=https://petstore.swagger.io/v2/swagger.json
# 或本地文件
npx -y api-docs-mcp-server@latest --source=./docs/openapi.yaml
# 自定义 server 名称/版本
npx -y api-docs-mcp-server@latest --source=https://xxx.com/v2/api-docs --name=my-api在 Cursor / Claude Code 的 mcpServers 配置中添加:
{
"mcpServers": {
"api-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"api-docs-mcp-server@latest",
"--source=https://xxx.com/v2/api-docs"
]
}
}
}说明:工具调用时也可通过
source参数传入其他文档地址(优先级高于 CLI 的--source默认值)。
CLI 参数
参数 | 说明 |
| 默认文档源(URL 或本地文件路径) |
| MCP server 名称(默认 |
| MCP server 版本号(默认 |
| 显示帮助 |
方式二:HTTP 模式(自托管服务)
Express
import express from 'express';
import { createMcpHttpHandler } from 'api-docs-mcp-server';
const app = express();
app.use(express.json()); // 交给 MCP 处理器前先解析 JSON body
app.use(
'/mcp',
createMcpHttpHandler({
defaultSource: 'https://petstore.swagger.io/v2/swagger.json', // 可选
})
);
app.listen(3000);
// MCP 端点: http://localhost:3000/mcp原生 Node http
import { createServer } from 'node:http';
import { createMcpHttpHandler } from 'api-docs-mcp-server';
const handler = createMcpHttpHandler(); // 无需 express.json(),内部自动解析 body
createServer(async (req, res) => {
await handler(req, res);
}).listen(3000);HTTP 模式下文档源可通过以下方式指定(优先级从高到低):
工具调用参数
source(如{"source": "https://.../openapi.json"})请求 URL 查询参数
?source=<文档地址>请求头
x-mcp-source: <文档地址>服务端默认源
createMcpHttpHandler({ defaultSource })
MCP 工具
工具 | 说明 |
| 文档概览:info / servers / tags 分组统计 / 接口总数 |
| 按关键词搜索接口(匹配 path / summary / description / tags / operationId) |
| 按 method + path 返回接口详情,$ref 递归展开 |
| 导出完整/分段文档(format: json/yaml, section: full/paths/schemas/info) |
| 强制刷新文档缓存(传 source 刷新单源,不传刷新全部缓存源) |
配置项
createMcpHttpHandler(options)
选项 | 类型 | 默认 | 说明 |
|
| - | 服务端默认文档源 |
|
| 自动创建 | 自定义服务实例(共享缓存 / 注入测试替身) |
|
|
| 日志器 |
|
| 10MB | HTTP 请求体大小上限(字节) |
|
|
| MCP 客户端看到的 server 元信息 |
new OpenapiService(options)
选项 | 类型 | 默认 | 说明 |
|
|
| 自定义 axios 实例(代理 / 拦截器 / 测试) |
|
|
| 日志器 |
|
| 20MB | 单个 spec 文件大小上限(字节) |
|
| 5 分钟 | 缓存有效期 |
|
| 10 | 最多缓存的数据源数量(LRU) |
startStdioServer(options)
库内嵌启动 stdio 模式 MCP server(与 CLI 同款逻辑,日志自动走 stderr):
import { startStdioServer } from 'api-docs-mcp-server';
const handle = await startStdioServer({
defaultSource: 'https://.../openapi.json',
serverInfo: { name: 'my-server' },
});
// 进程退出前调用 handle.close() 优雅关闭createMcpServer(service, options)
底层 API,直接构造注册好工具的 McpServer(可配合 StdioServerTransport / SSEServerTransport 等任意传输使用):
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
import { createMcpServer, OpenapiService } from 'api-docs-mcp-server';
const service = new OpenapiService({ defaultSource: 'https://.../openapi.json' });
const server = createMcpServer(service, { defaultSource: 'https://.../openapi.json' });
await server.connect(new StdioServerTransport());错误处理
所有文档源错误统一为 McpSourceError,携带机器可读的 kind 分类:
SOURCE_NOT_SPECIFIED/DOWNLOAD_FAILED/FILE_READ_FAILED/INVALID_EXTENSION/FILE_TOO_LARGEINVALID_DOCUMENT/UNSUPPORTED_METHOD/PATH_NOT_FOUND/METHOD_NOT_FOUNDBODY_TOO_LARGE/BODY_PARSE_FAILED
MCP 工具调用失败时以 isError: true 返回错误文本,HTTP 层错误返回 JSON-RPC 错误格式。
与 NestJS 的适配
本包不依赖 NestJS。在 NestJS 项目中接入只需一步:
// mcp.controller.ts
import { Controller, Post, Req, Res } from '@nestjs/common';
import { createMcpHttpHandler } from 'api-docs-mcp-server';
@Controller('mcp')
export class McpController {
@Post()
async handle(@Req() req, @Res() res) {
await createMcpHttpHandler({ defaultSource: '...' })(req, res);
}
}注意:Nest 路由层需要禁用
ValidationPipe对 MCP 请求体的校验(该端点的 body 是 JSON-RPC 消息,不是业务 DTO)。
License
MIT
Available Tools
5 toolsget-api-detail获取接口详情A
按 method + path 返回接口完整详情:参数、请求体、响应结构,所有 $ref 引用(数据模型)已递归展开,循环引用会标记为 $ref-cycle。参数:source 同上;method HTTP 方法(如 GET/POST);path 接口路径,需与文档完全一致(可先用 search-apis 查询)。
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | 接口路径,需与文档完全一致(可先用 search-apis 查询) | |
| method | Yes | HTTP 方法,如 GET/POST | |
| source | No | Swagger/OpenAPI 文档的 URL(http/https)或本地文件路径(.json/.yaml/.yml);不传时使用服务端配置的默认文档 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and delivers: it discloses the non-obvious behaviors of recursive $ref expansion and circular-reference marking ($ref-cycle), which go beyond what annotations or schema could convey. It doesn't cover error cases or auth, but for a read-only detail fetch, this is solid behavioral disclosure.
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 compact paragraph with a front-loaded purpose statement followed by parameter clarifications, earning its space. The odd 'source 同上' (same as above) reference is confusing without external context, slightly marring an otherwise efficient structure.
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 3-parameter tool with no output schema and no annotations, the description covers the essential ground: return contents, expansion behavior, cycle handling, and exact-match requirements. While it could note error behavior for non-existent paths, and the lack of annotations in the context, the description is adequate for an agent to invoke this tool effectively.
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 baseline is 3 with the schema doing the heavy lifting. The description restates the parameters in prose and adds the 'path must exactly match' caveat, but this mirrors the schema text. The description's value-add lies in return semantics rather than parameter meaning, so no score above baseline is warranted.
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 a specific verb+resource structure ('按 method + path 返回接口完整详情' - returns complete API details by method + path), enumerating return contents (parameters, request body, response structure) and explicitly noting the recursive $ref expansion behavior. This $ref-cycle detail meaningfully distinguishes it from siblings like get-openapi-spec and search-apis.
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 gives practical usage context by noting the path must exactly match and directing users to query with search-apis first ('可先用 search-apis 查询'). It provides clear context for the workflow, though it lacks explicit exclusions or direct comparison against get-spec-overview/get-openapi-spec siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-openapi-spec导出完整 OpenAPI 文档A
导出完整(或分段)的 OpenAPI 3.x 文档文本,超长自动截断。参数:source 同上;format 输出格式 json/yaml(默认 json);section 导出分段 full/paths/schemas/info(默认 full);max_length 最大返回字符数(默认 50000)。大文档建议用 section 分段获取,或优先使用概览/搜索/详情工具。
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | 输出格式,默认 json | json |
| source | No | Swagger/OpenAPI 文档的 URL(http/https)或本地文件路径(.json/.yaml/.yml);不传时使用服务端配置的默认文档 | |
| section | No | 导出分段,默认 full | full |
| max_length | No | 最大返回字符数,默认 50000 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses key behavior like auto-truncation ('超长自动截断') and default parameter values. It does not mention permissions or side effects, but for a read-only export 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?
Three sentences pack purpose, parameter list, and usage advice without wasted words. The structure is logical and 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?
Covers all essential aspects: output format, segmentation, truncation, defaults, and usage guidance. Return values are implied by '文档文本' and no output schema is needed.
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 by summarizing parameter defaults and explicitly linking max_length to truncation behavior, though 'source 同上' is vague.
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 exports full or segmented OpenAPI 3.x document text, with a specific verb and resource. It distinguishes itself from sibling tools by suggesting overview/search/detail tools for other needs.
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 advises when to use the section parameter for large documents and directs users to alternative tools (概览/搜索/详情), providing clear when-to-use and when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-spec-overview获取接口文档概览A
读取 Swagger/OpenAPI 文档,返回 info、servers、tags 分组统计、接口总数等概览信息。通常这是使用其它工具前的第一步。参数 source:文档的 URL(http/https)或本地文件路径(.json/.yaml/.yml),可选,不传时使用服务端配置的默认文档。
| Name | Required | Description | Default |
|---|---|---|---|
| source | No | Swagger/OpenAPI 文档的 URL(http/https)或本地文件路径(.json/.yaml/.yml);不传时使用服务端配置的默认文档 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It states it reads the document (implying read-only) but does not disclose potential side effects like network access, caching, or error behavior. However, it does mention the default-document fallback, adding some transparency beyond the schema.
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 the action and output, then parameter details. No wasted words; it efficiently conveys purpose, usage context, and parameter behavior.
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 optional parameter and no output schema, the description is fairly complete. It specifies what the overview includes and the fallback behavior. It could mention error handling or that it does not return the full spec, but that is not essential given the sibling context.
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% and the description essentially repeats the schema's parameter info without adding new meaning. The baseline for high coverage is 3, and since the description adds no extra semantics beyond the schema, a 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 reads Swagger/OpenAPI documents and returns overview information (info, servers, tags stats, total endpoints). It explicitly frames it as the first step before using other tools, distinguishing it from siblings like get-api-detail or get-openapi-spec.
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 clear usage context ('usually this is the first step before using other tools') and explains the optional source parameter falls back to a default document. It does not explicitly name alternates or when not to use it, but the context strongly implies its role.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
refresh-cache刷新文档缓存A
强制重新加载文档源并立即替换缓存(无需等待 5 分钟过期)。参数 source 可选:传了只刷新该文档源(若从未加载过则加载并加入缓存);不传则刷新全部已缓存源(注意:不等于默认文档;若默认文档从未被加载则不在刷新之列)。刷新失败时保留旧缓存。
| Name | Required | Description | Default |
|---|---|---|---|
| source | No | Swagger/OpenAPI 文档的 URL(http/https)或本地文件路径(.json/.yaml/.yml);不传时使用服务端配置的默认文档 |
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 important behaviors: failure retains old cache, and refreshing all cached sources excludes the default if it was never loaded. It does not mention authentication or rate limits, but covers key side effects.
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 concise yet comprehensive, covering behavior, parameter handling, and failure cases without unnecessary fluff. It is well-structured with clear conditional logic.
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 all essential aspects of the tool's operation: parameter semantics, edge cases, and failure behavior. It does not describe return values, but since no output schema is provided, this is not a significant gap. Overall, it is complete for the given 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?
The description adds substantial meaning beyond the schema. It clarifies that 'source' is optional and explains the exact consequences of providing or omitting it, including the nuance about the default document not being refreshed unless previously loaded. This goes beyond the basic 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 the tool's function: forcibly reloading document sources and replacing the cache immediately. It distinguishes itself from sibling tools (get-spec-overview, search-apis, etc.) by focusing on cache refresh rather than retrieval or search.
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 explains when to use the tool (to refresh cache) and details the behavior of the optional 'source' parameter, including the difference between refreshing a specific source versus all cached sources. It does not explicitly contrast with sibling tools but implies the use case clearly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search-apis搜索接口列表A
按关键词搜索接口(匹配 path/summary/description/tags/operationId,大小写不敏感),返回 method/path/summary/tags 列表,获取确切 path 后用 get-api-detail 查看详情。参数:source 同上;keyword 搜索关键词(如「充值」「user」,不传返回全部);limit 最多返回条数(默认 50,最大 200)。
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 最多返回条数,默认 50 | |
| source | No | Swagger/OpenAPI 文档的 URL(http/https)或本地文件路径(.json/.yaml/.yml);不传时使用服务端配置的默认文档 | |
| keyword | No | 搜索关键词,如「充值」「user」;不传则返回全部 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses the matching fields, case-insensitivity, return fields (method/path/summary/tags), behavior when keyword is omitted (returns all), and limit constraints. This is ample transparency for a read-only search tool.
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 dense sentence that front-loads the purpose and integrates parameter notes. It is efficient and avoids unnecessary words, though the inline parameter list could be slightly clearer as separate points.
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 search behavior, return list fields, and a clear next step (get-api-detail). No output schema exists, so the return fields are stated. It lacks error-handling or pagination details, but for a moderate-complexity search tool, these are not critical.
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 descriptions for all three parameters. The description restates the parameter meanings (e.g., keyword, limit) but does not introduce new semantic details beyond what the schema already provides, such as syntax or interaction between parameters.
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 APIs by keyword, specifying the exact fields being matched (path, summary, description, tags, operationId). It distinguishes itself from get-api-detail by directing users there after finding the exact path, which shows a specific search-and-then-detail workflow.
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 clear context: use this tool to search by keyword and then follow up with get-api-detail. It doesn't explicitly compare with get-spec-overview or get-openapi-spec, but the purpose is implicit enough that a user can infer when to use it.
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.
5 tool updates
v0.1.1- First observed
get-api-detail - First observed
get-openapi-spec - First observed
get-spec-overview - First observed
refresh-cache - First observed
search-apis
TDQS
Each tool targets a distinct operation: overview, search, detail, full export, and cache refresh. No overlapping purposes.
Names follow a consistent verb-noun pattern (get-, search-, refresh-) with clear intent. Minor deviation: refresh-cache uses a verb-noun but others are get/search.
Five tools cover the complete workflow of exploring an OpenAPI document. This is well-scoped for a documentation server.
Core capabilities are present: browsing overview, searching, viewing details, and exporting raw specs. Missing operations like downloading resolved schemas standalone but not critical.
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
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
Discover and call 10,000+ production APIs from one MCP server. Pay-per-call billing for AI agents.
The OpenRouter for tools. One MCP connection gives any AI agent 254 hosted tools, pay per call.
471MCP server for AI access to Swagger by SmartBear.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceExposes OpenAPI specifications as MCP tools, enabling AI assistants to explore and understand API structures, endpoints, schemas, and documentation through semantic queries.19MIT
- AlicenseNot gradedqualityBmaintenanceTurns any OpenAPI/Swagger API into MCP tools, enabling AI assistants to call REST API endpoints directly.2MIT
- AlicenseNot gradedqualityDmaintenanceExposes OpenAPI endpoints as MCP tools, enabling LLMs to discover and interact with REST APIs through the MCP protocol.16MIT
- FlicenseAqualityDmaintenanceExposes two MCP tools (discover and execute) that enable agents to query an OpenAPI schema via natural language and execute matched API operations.2-
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/geniyangge/api-docs-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server