← WebMCP Directory

Tool tree

orbit.securedme.ca

AI & Agents
https://orbit.securedme.ca/
Orbit Companion
Explore capabilities

Tools verified

orbit_get_research_requestAction

Start here. Read the human question, selected context and requestId only after explicit sharing. Ask clarifying questions; propose nine research axes, collect up to thirty real source URLs and present a cited report. Uses no paid API.

View tool JSON
{
  "name": "orbit_get_research_request",
  "kind": "act",
  "impl": "imperative",
  "description": "Start here. Read the human question, selected context and requestId only after explicit sharing. Ask clarifying questions; propose nine research axes, collect up to thirty real source URLs and present a cited report. Uses no paid API.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
}
orbit_present_researchAction

Show an answer in the holographic companion and optionally read it aloud if the human enabled voice. Requires current requestId and sharing. Use empty axes and sources for a clarification. Sources and claims remain external-agent-reported. Does not publish or invoke providers.

View tool JSON
{
  "name": "orbit_present_research",
  "kind": "act",
  "impl": "imperative",
  "description": "Show an answer in the holographic companion and optionally read it aloud if the human enabled voice. Requires current requestId and sharing. Use empty axes and sources for a clarification. Sources and claims remain external-agent-reported. Does not publish or invoke providers.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "requestId": {
        "type": "string",
        "maxLength": 128
      },
      "report": {
        "type": "string",
        "minLength": 1,
        "maxLength": 40000
      },
      "axes": {
        "type": "array",
        "maxItems": 9,
        "items": {
          "type": "string",
          "maxLength": 300
        }
      },
      "sources": {
        "type": "array",
        "maxItems": 30,
        "items": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string",
              "maxLength": 500
            },
            "url": {
              "type": "string",
              "maxLength": 2000
            },
            "status": {
              "type": "string",
              "enum": [
                "discovered",
                "excerpt-read",
                "read"
              ]
            }
          },
          "required": [
            "title",
            "url",
            "status"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "requestId",
      "report",
      "axes",
      "sources"
    ],
    "additionalProperties": false
  }
}
orbit_search_webAction

Run one bounded Exa search using the associated extension and its mission budget. Requires the human research consent checkbox and workspace sharing. Uses Exa credits. On the public site without association it returns UNAVAILABLE; use your own authorized search tools instead.

View tool JSON
{
  "name": "orbit_search_web",
  "kind": "act",
  "impl": "imperative",
  "description": "Run one bounded Exa search using the associated extension and its mission budget. Requires the human research consent checkbox and workspace sharing. Uses Exa credits. On the public site without association it returns UNAVAILABLE; use your own authorized search tools instead.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  }
}
orbit_get_mission_summaryAction

Read one local Orbit Companion mission and its bounded checkpoint list from the associated extension or explicitly shared browser workspace.

View tool JSON
{
  "name": "orbit_get_mission_summary",
  "kind": "act",
  "impl": "imperative",
  "description": "Read one local Orbit Companion mission and its bounded checkpoint list from the associated extension or explicitly shared browser workspace.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "missionId": {
        "type": "string",
        "pattern": "^mission_[A-Za-z0-9_-]+$",
        "maxLength": 128
      }
    },
    "required": [],
    "additionalProperties": false
  }
}
orbit_list_research_pointsAction

Read a bounded page of local research points from the associated extension or explicitly shared browser workspace.

View tool JSON
{
  "name": "orbit_list_research_points",
  "kind": "act",
  "impl": "imperative",
  "description": "Read a bounded page of local research points from the associated extension or explicitly shared browser workspace.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "offset": {
        "type": "integer",
        "minimum": 0,
        "default": 0
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 25,
        "default": 10
      }
    },
    "required": [],
    "additionalProperties": false
  }
}
orbit_search_sourcesAction

Search saved local source records in the associated mission. Saved records are not necessarily verified. It never fetches the web.

View tool JSON
{
  "name": "orbit_search_sources",
  "kind": "act",
  "impl": "imperative",
  "description": "Search saved local source records in the associated mission. Saved records are not necessarily verified. It never fetches the web.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 25,
        "default": 10
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  }
}
orbit_read_source_recordAction

Read one stored source record by local identifier without fetching its URL.

View tool JSON
{
  "name": "orbit_read_source_record",
  "kind": "act",
  "impl": "imperative",
  "description": "Read one stored source record by local identifier without fetching its URL.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "sourceId": {
        "type": "string",
        "minLength": 1,
        "maxLength": 128
      }
    },
    "required": [
      "sourceId"
    ],
    "additionalProperties": false
  }
}
orbit_get_physics_snapshotAction

Read the visible experiment controls and displayed telemetry, sampled at invocation time. Educational simulation, not flight data. No network call is made.

View tool JSON
{
  "name": "orbit_get_physics_snapshot",
  "kind": "act",
  "impl": "imperative",
  "description": "Read the visible experiment controls and displayed telemetry, sampled at invocation time. Educational simulation, not flight data. No network call is made.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
}