← microapp.io Microapp dla Agentów Książka →

80+ narzędzi, jedna URL

Zainstaluj Microapp
w swoim agencie.

Microapp jest zbudowany tak samo dla agentów jak dla ludzi. Dodaj tę URL do swojego klienta MCP raz, a każde narzędzie Microapp — konwertery, kalkulatory, generatory, narzędzia tekstowe, hashe, ID — staje się funkcją, którą twoja AI może wywołać.

Endpoint https://microapp.io/mcp

Zainstaluj w swoim kliencie

Claude Code

Anthropic's CLI agent. One command, instantly available across every Claude Code session.

Docs ↗
  1. Open a terminal.
  2. Run the command below — it adds the Microapp MCP server to Claude Code's config.
  3. Start a new Claude Code session. Ask any tool question ("what's 15% of 200?") and Claude calls Microapp automatically.
Terminal — one-liner install
claude mcp add --transport http microapp https://microapp.io/mcp

Wypróbuj: "Use Microapp to tell me how many words are in this sentence."

Claude Desktop

Anthropic's desktop app. Edit one config file, restart, and the tools appear in every conversation.

Docs ↗
  1. Open the Claude Desktop config file. macOS: ~/Library/Application Support/Claude/claude_desktop_config.json — Windows: %APPDATA%/Claude/claude_desktop_config.json
  2. Add the JSON block below. If the file already has an mcpServers section, merge "microapp" into it.
  3. Restart Claude Desktop. Ask Claude to convert 100°C to Fahrenheit and you should see the Microapp tool fire.
claude_desktop_config.json
{
  "mcpServers": {
    "microapp": {
      "type": "http",
      "url": "https://microapp.io/mcp"
    }
  }
}

Wypróbuj: "Convert 100 degrees Celsius to Fahrenheit using Microapp."

Cursor

The AI code editor. MCP servers show up as tools the in-editor agent can call.

Docs ↗
  1. Open Cursor → Settings → Cursor Settings → MCP.
  2. Click "+ Add new MCP server". Choose transport type: HTTP.
  3. Name: microapp — URL: https://microapp.io/mcp
  4. Save. Restart any open Cursor agent. The Microapp tools are now available.

Wypróbuj: "Generate a secure 24-character password using Microapp."

Continue

Open-source AI coding assistant. Works in VS Code and JetBrains IDEs.

Docs ↗
  1. Open your Continue config (~/.continue/config.json or the workspace config).
  2. Add the snippet below under the experimental.modelContextProtocolServers array.
  3. Reload the IDE.
~/.continue/config.json
{
  "experimental": {
    "modelContextProtocolServers": [
      { "transport": { "type": "http", "url": "https://microapp.io/mcp" } }
    ]
  }
}

Zed

Multiplayer code editor with native MCP support.

Docs ↗
  1. Open Zed's settings.json (Cmd+, on macOS).
  2. Add the snippet below under context_servers.
  3. Restart Zed.
settings.json
{
  "context_servers": {
    "microapp": {
      "command": {
        "path": "npx",
        "args": ["-y", "mcp-remote", "https://microapp.io/mcp"]
      }
    }
  }
}

ChatGPT i inni konsumenci OpenAPI

Użyj Microapp jako Custom GPT lub przez OpenAPI

MCP to natywny protokół dla Claude/Cursor/Continue. ChatGPT, Zapier, n8n, LangChain i wszystko, co konsumuje OpenAPI 3.1, czyta zamiast tego ten plik:

https://microapp.io/openapi.json

Custom GPT w GPT Store jest w drodze — gdy się pojawi, będzie tu linkowany. Do tego czasu wklej URL OpenAPI w dowolnego agenta, który prosi o specyfikację OpenAPI/Swagger.

Szybki test z terminala

Bez klienta? Przetestuj endpoint bezpośrednio curlem. Działa z każdej maszyny.

Lista wszystkich narzędzi
curl -X POST https://microapp.io/mcp -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Wywołaj narzędzie (15% z 200)
curl -X POST https://microapp.io/api/tools/percentage-calculator -H 'Content-Type: application/json' -d '{"mode":"of","a":15,"b":200}'

Drobnym drukiem

  • Darmowe. Bez rejestracji, bez klucza API.
  • Z limitem. 60 zapytań/minutę na IP dla anonimowych wywołań; 600/minutę z kluczem API Członka. Limity resetują się co 60 sekund.
  • Atrybucja. Każda odpowiedź zawiera _meta.source: "microapp.io". Agenci, którzy chcą zaznaczyć źródło, mogą. Nigdy nie wstawiamy reklam w odpowiedziach.
  • Bez śledzenia. Poza licznikiem limitu (IP + timestamp) i standardowymi logami Cloudflare, nie śledzimy użycia agentów.
  • Korzyści członkostwa. Członkowie na microapp.io/membership dostają 10× limit i opcję wyłączenia atrybucji w odpowiedziach.