The user wants a short HTML snippet introducing the OAS-MCP tool. Let me write a concise "About" section in Chinese, following the formatting rules: use only safe HTML tags, no Markdown code blocks, no JSON config or fake tokens, keep it short.
OAS-MCP: converts OpenAPI specs into MCP tools, helps Go projects integrate APIs easily.
Let me draft the HTML:
- Short intro paragraph
- What it can connect to / do
- Whether keys are needed (likely yes, since it's for API integration)
I'll keep it brief and use allowed tags only.
关于 OAS-MCP
OAS-MCP 是一款面向 Go 项目的接口集成 MCP,能将 OpenAPI 规范(Swagger / OpenAPI 3.x)一键转换为可被 MCP 直接调用的工具,省去手写封装层与对接样板代码的繁琐流程。
它能接什么
- 任意遵循 OpenAPI 2.0 / 3.x 规范的本地或在线接口文档(JSON / YAML)
- Go 工程内已注册的 HTTP API、RESTful 服务以及第三方 SaaS 接口
- 通过
oas-mcp CLI 或库函数批量生成 MCP Tool 描述与调用逻辑
是否需要密钥
取决于被接入的接口本身:OAS-MCP 自身不强制要求密钥,但当目标 API 启用了 Bearer Token、API Key、OAuth2 等鉴权时,需在调用侧提供相应凭证;OpenAPI 文档若包含 securitySchemes,OAS-MCP 会自动透传鉴权字段供你配置。
适合在 Go 微服务、网关层或 AI Agent 工具链中快速落地 API 能力。