← WebMCP Directory

Tool tree

outside-the-box.dev

liveMedia & Personal
https://outside-the-box.dev/
Hebrew-language developer podcast and meetup community — episodes, meetup talks, and speaker profiles.
Explore capabilities
dotb_search_catalogAnswer

Search every מפתחים מחוץ לקופסה podcast episode and meetup talk by topic, technology, guest name or free text. Hebrew and English queries both work. Returns titles, dates, guests, tags and listening links.

View tool JSON
{
  "name": "dotb_search_catalog",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search every מפתחים מחוץ לקופסה podcast episode and meetup talk by topic, technology, guest name or free text. Hebrew and English queries both work. Returns titles, dates, guests, tags and listening links.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Topic, technology, guest name or phrase."
      },
      "type": {
        "type": "string",
        "enum": [
          "episode",
          "talk"
        ],
        "description": "Restrict to one kind of content."
      }
    },
    "required": [
      "query"
    ]
  }
}
dotb_list_episodesAnswer

List podcast episodes newest first, optionally narrowed to one season, format or guest slug.

View tool JSON
{
  "name": "dotb_list_episodes",
  "kind": "answer",
  "impl": "imperative",
  "description": "List podcast episodes newest first, optionally narrowed to one season, format or guest slug.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "season": {
        "type": "number",
        "description": "Season number."
      },
      "format": {
        "type": "string",
        "enum": [
          "audio",
          "video",
          "bonus"
        ],
        "description": "Episode format."
      },
      "speaker": {
        "type": "string",
        "description": "Guest slug, e.g. 'gil-tayar'."
      }
    }
  }
}
dotb_list_talksAnswer

List the talks given at the community's meetups, newest first, optionally narrowed to one meetup or speaker slug. Every talk carries a YouTube link.

View tool JSON
{
  "name": "dotb_list_talks",
  "kind": "answer",
  "impl": "imperative",
  "description": "List the talks given at the community's meetups, newest first, optionally narrowed to one meetup or speaker slug. Every talk carries a YouTube link.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "meetup": {
        "type": "string",
        "description": "Meetup slug, e.g. 'meetup-04'."
      },
      "speaker": {
        "type": "string",
        "description": "Speaker slug."
      }
    }
  }
}
dotb_get_speakerAnswer

Get one guest or meetup speaker by slug, with the episodes and talks they appear in. Use dotb_search_catalog first to find the slug.

View tool JSON
{
  "name": "dotb_get_speaker",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get one guest or meetup speaker by slug, with the episodes and talks they appear in. Use dotb_search_catalog first to find the slug.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "slug": {
        "type": "string",
        "description": "Speaker slug, e.g. 'gil-tayar'."
      }
    },
    "required": [
      "slug"
    ]
  }
}