Turn any OpenAPI/Swagger spec into an agent-ready MCP server. Point it at a spec; every operation becomes a tool. (YC RFS: Software for Agents)
claude mcp add agentify -- npx -y agentify-openapi{
"mcpServers": {
"agentify": {
"command": "npx",
"args": ["-y", "agentify-openapi"]
}
}
}Resumen de MCP Servers
# agentify
**Turn any OpenAPI / Swagger spec into an agent-ready MCP server.**
[](https://www.npmjs.com/package/agentify-openapi)
Listed on the [official MCP Registry](https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.sani-savaliya/agentify) (`io.github.sani-savaliya/agentify`) and [Smithery](https://smithery.ai/servers/sanisavaliya12/agentify).
Point it at a spec — a URL, a file, OpenAPI 3.x or Swagger 2.0 — and every operation
becomes a tool an AI agent can call. No code generation, no per-API boilerplate, no
hosting. One command.
```bash
npx agentify-openapi https://petstore3.swagger.io/api/v3/openapi.json --list
```
```
Swagger Petstore - OpenAPI 3.0 v1.0.27
Base URL: https://petstore3.swagger.io/api/v3
Tools: 19
getPetById
Find pet by ID.
findPetsByStatus
Finds Pets by status.
...
```
## Why
> *"Today, agents have to operate software designed for humans. The interfaces of
> the future will be built for agents — APIs, MCPs, CLIs — with agents as
> first-class citizens."* — [YC RFS: Software for Agents](https://www.ycombinator.com/rfs)
There are tens of thousands of APIs that already describe themselves with an OpenAPI
document. `agentify` makes every one of them agent-native, instantly, without anyone
hand-writing an integration.
## Use it with Claude / any MCP client
Add to your MCP client config (e.g. Claude Desktop / Claude Code):
```json
{
"mcpServers": {
"petstore": {
"command": "npx",
"args": ["-y", "agentify-openapi", "https://petstore3.swagger.io/api/v3/openapi.json"]
}
}
}
```
The agent now has one tool per API operation. Calling a tool builds the HTTP request
(path params, query string, headers, JSON body) and returns the live response.
## Auth
Provide credentials via environment variables — `agentify` reads the spec's declared
security scheme to find the right header name when it can:
| Variable | Effect |
|---|---|
| `AGENTIFY_BEARER_TOKEN` | `Authorization: Bearer <token>` |
| `AGENTIFY_BASIC_USER` / `AGENTIFY_BASIC_PASS` | HTTP basic auth |
| `AGENTIFY_API_KEY` | API key (sent as a header by default) |
| `AGENTIFY_API_KEY_HEADER` | Override the api-key header name |
| `AGENTIFY_API_KEY_QUERY` | Send the api key as a query param instead |
You can also inject raw headers from the CLI: `--header "X-Org-Id: 42"` (repeatable).
## CLI
```
agentify <spec-url-or-file> [options]
--base-url <url> Override the API base URL from the spec
--header "K: V" Add a raw header to every request (repeatable)
--name <name> Override the MCP server name
--list Print the discovered tools and exit (no server)
-h, --help Show help
```
## How it works
A small, pure pipeline — each stage is independently unit-tested:
```
spec ──▶ operations ──▶ tool defs ──▶ http request ──▶ response
│ │ │ │ │
load & one tool JSON Schema path/query/ fetch + surface
deref per op for inputs header/body status & body
$refs + auth
```
Only the HTTP execution and MCP transport touch the outside world; everything else is
deterministic and tested.
## Programmatic use
```ts
import { loadSpec, extractOperations, resolveBaseUrl, createServer } from "agentify-openapi";
const spec = await loadSpec("./openapi.yaml");
const tools = extractOperations(spec);
const baseUrl = resolveBaseUrl(spec);
// ...build your own MCP server, or just inspect the generated tool defs
```
## Limitations (v0.1)
- JSON request/response bodies are first-class; `multipart`/form bodies are passed
through best-effort.
- `cookie` parameters and OAuth2 flows are not yet handled (use `--header` for now).
- One server per spec. Multi-spec aggregation is on the roadmap.
## Development
```bash
npm install
npm test # vitest, 80%+ coverage enforced
npm run build # tsc -> dist/
node scripts/smoke.mjs # end-to-end MCP client smoke test (network)
```
## License
MIT
Lo que la gente pregunta sobre agentify
¿Qué es sani-savaliya/agentify?
+
sani-savaliya/agentify es mcp servers para el ecosistema de Claude AI. Turn any OpenAPI/Swagger spec into an agent-ready MCP server. Point it at a spec; every operation becomes a tool. (YC RFS: Software for Agents) Tiene 0 estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala agentify?
+
Puedes instalar agentify clonando el repositorio (https://github.com/sani-savaliya/agentify) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar sani-savaliya/agentify?
+
sani-savaliya/agentify aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.
¿Quién mantiene sani-savaliya/agentify?
+
sani-savaliya/agentify es mantenido por sani-savaliya. La última actividad registrada en GitHub es de today, con 0 issues abiertos.
¿Hay alternativas a agentify?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega agentify en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/sani-savaliya-agentify)<a href="https://claudewave.com/repo/sani-savaliya-agentify"><img src="https://claudewave.com/api/badge/sani-savaliya-agentify" alt="Featured on ClaudeWave: sani-savaliya/agentify" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。