← microapp.io Microapp für Agenten Das Buch →

80+ Tools, eine URL

Installiere Microapp
in deinem Agenten.

Microapp ist genauso für Agenten wie für Menschen gebaut. Füge diese URL einmal in deinen MCP-Client ein und jedes Microapp-Tool — Konverter, Rechner, Generatoren, Text-Utilities, Hashes, IDs — wird zu einer Funktion, die deine KI aufrufen kann.

Endpoint https://microapp.io/mcp

In deinem Client installieren

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

Probier’s: "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"
    }
  }
}

Probier’s: "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.

Probier’s: "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 & andere OpenAPI-Konsumenten

Nutze Microapp als Custom GPT oder über OpenAPI

MCP ist das native Protokoll für Claude/Cursor/Continue. ChatGPT, Zapier, n8n, LangChain und alles, was OpenAPI 3.1 konsumiert, liest stattdessen diese Datei:

https://microapp.io/openapi.json

Das Custom GPT im GPT Store kommt — sobald es da ist, wird es hier verlinkt. Bis dahin: füge die OpenAPI-URL in jeden Agenten ein, der nach einer OpenAPI/Swagger-Spezifikation fragt.

Smoke-Test im Terminal

Kein Client? Teste den Endpoint direkt mit curl. Das geht auf jedem Rechner.

Alle Tools auflisten
curl -X POST https://microapp.io/mcp -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Tool aufrufen (15% von 200)
curl -X POST https://microapp.io/api/tools/percentage-calculator -H 'Content-Type: application/json' -d '{"mode":"of","a":15,"b":200}'

Kleingedrucktes

  • Kostenlos. Keine Anmeldung, kein API-Key nötig.
  • Rate-limitiert. 60 Anfragen/Minute pro IP für anonyme Aufrufe; 600/Minute mit einem Member-API-Key. Limits werden alle 60 Sekunden zurückgesetzt.
  • Attribution. Jede Antwort enthält _meta.source: "microapp.io". Agenten, die nennen wollen, können. Wir setzen nie Werbung in Antworten.
  • Kein Tracking. Außer dem Rate-Limit-Zähler (IP + Zeitstempel) und Standard-Cloudflare-Logs tracken wir keine Agenten-Nutzung.
  • Mitglieder-Vorteile. Mitglieder auf microapp.io/membership bekommen das 10-fache Rate-Limit und die Option, die Attribution in Antworten zu unterdrücken.