babel

mcp://babel.so/

site/manifest raw
{
  "name": "babel",
  "description": "Babel makes Pachinko: tasks, notes, feeds, and AI Functions on macOS and iOS.",
  "url": "https://www.babel.so",
  "languages": [
    "EN",
    "MCP"
  ],
  "resources": [
    {
      "path": "/mcp/products.json",
      "description": "every Babel product as a structured offer",
      "url": "https://www.babel.so/mcp/products.json"
    },
    {
      "path": "/mcp/powerups.json",
      "description": "powerups with installable .inko download URLs",
      "url": "https://www.babel.so/mcp/powerups.json"
    },
    {
      "path": "/mcp/support.json",
      "description": "support episodes with plain-text bodies for retrieval",
      "url": "https://www.babel.so/mcp/support.json"
    },
    {
      "path": "/llms.txt",
      "description": "the agent-facing site map",
      "url": "https://www.babel.so/llms.txt"
    }
  ],
  "tools": [
    {
      "name": "list_products",
      "description": "List every Babel product with price, platform, and download URLs."
    },
    {
      "name": "get_product",
      "description": "Full record for one product."
    },
    {
      "name": "list_powerups",
      "description": "List powerups: curated sets of Pachinko Feeds and Functions."
    },
    {
      "name": "get_powerup",
      "description": "One powerup with its Feeds and Functions and .inko download URLs, installable into Pachinko."
    },
    {
      "name": "search_support",
      "description": "Search the Pachinko support episodes; returns matching episodes with excerpts."
    }
  ],
  "products": [
    {
      "id": "pachinko",
      "name": "Pachinko",
      "kind": "macOS + iOS app",
      "url": "https://www.babel.so/pachinko/"
    },
    {
      "id": "powerups",
      "name": "Pachinko Powerups",
      "kind": "content drops (.inko)",
      "url": "https://www.babel.so/pachinko/powerups/"
    }
  ]
}
site/tools
[
  {
    "name": "list_products",
    "description": "List every Babel product with price, platform, and download URLs.",
    "inputSchema": {
      "type": "object",
      "properties": {}
    }
  },
  {
    "name": "get_product",
    "description": "Full record for one product.",
    "inputSchema": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "enum": [
            "pachinko",
            "powerups"
          ]
        }
      },
      "required": [
        "id"
      ]
    }
  },
  {
    "name": "list_powerups",
    "description": "List powerups: curated sets of Pachinko Feeds and Functions.",
    "inputSchema": {
      "type": "object",
      "properties": {}
    }
  },
  {
    "name": "get_powerup",
    "description": "One powerup with its Feeds and Functions and .inko download URLs, installable into Pachinko.",
    "inputSchema": {
      "type": "object",
      "properties": {
        "slug": {
          "type": "string"
        }
      },
      "required": [
        "slug"
      ]
    }
  },
  {
    "name": "search_support",
    "description": "Search the Pachinko support episodes; returns matching episodes with excerpts.",
    "inputSchema": {
      "type": "object",
      "properties": {
        "query": {
          "type": "string"
        }
      },
      "required": [
        "query"
      ]
    }
  }
]