Microsoft Teams · Capability

Microsoft Graph Teams API — Online Meetings

Microsoft Graph Teams API — Online Meetings. 2 operations. Lead operation: Microsoft Teams Create Online Meeting. Self-contained Naftiko capability covering one Microsoft Teams business surface.

Run with Naftiko Microsoft TeamsOnline Meetings

What You Can Do

POST
Createonlinemeeting — Microsoft Teams Create Online Meeting
/v1/communications/onlinemeetings
GET
Getonlinemeeting — Microsoft Teams Get Online Meeting
/v1/communications/onlinemeetings/{meeting-id}

MCP Tools

microsoft-teams-create-online-meeting

Microsoft Teams Create Online Meeting

microsoft-teams-get-online-meeting

Microsoft Teams Get Online Meeting

read-only idempotent

Capability Spec

graph-online-meetings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Graph Teams API — Online Meetings
  description: 'Microsoft Graph Teams API — Online Meetings. 2 operations. Lead operation: Microsoft Teams Create Online Meeting.
    Self-contained Naftiko capability covering one Microsoft Teams business surface.'
  tags:
  - Microsoft Teams
  - Online Meetings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_TEAMS_API_KEY: MICROSOFT_TEAMS_API_KEY
capability:
  consumes:
  - type: http
    namespace: graph-online-meetings
    baseUri: https://graph.microsoft.com/v1.0
    description: Microsoft Graph Teams API — Online Meetings business capability. Self-contained, no shared references.
    resources:
    - name: communications-onlineMeetings
      path: /communications/onlineMeetings
      operations:
      - name: createonlinemeeting
        method: POST
        description: Microsoft Teams Create Online Meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: communications-onlineMeetings-meeting-id
      path: /communications/onlineMeetings/{meeting-id}
      operations:
      - name: getonlinemeeting
        method: GET
        description: Microsoft Teams Get Online Meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meeting-id
          in: path
          type: string
          description: The unique identifier of the meeting.
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_TEAMS_API_KEY}}'
  exposes:
  - type: rest
    namespace: graph-online-meetings-rest
    port: 8080
    description: REST adapter for Microsoft Graph Teams API — Online Meetings. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/communications/onlinemeetings
      name: communications-onlinemeetings
      description: REST surface for communications-onlineMeetings.
      operations:
      - method: POST
        name: createonlinemeeting
        description: Microsoft Teams Create Online Meeting
        call: graph-online-meetings.createonlinemeeting
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/communications/onlinemeetings/{meeting-id}
      name: communications-onlinemeetings-meeting-id
      description: REST surface for communications-onlineMeetings-meeting-id.
      operations:
      - method: GET
        name: getonlinemeeting
        description: Microsoft Teams Get Online Meeting
        call: graph-online-meetings.getonlinemeeting
        with:
          meeting-id: rest.meeting-id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: graph-online-meetings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Graph Teams API — Online Meetings. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: microsoft-teams-create-online-meeting
      description: Microsoft Teams Create Online Meeting
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: graph-online-meetings.createonlinemeeting
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-teams-get-online-meeting
      description: Microsoft Teams Get Online Meeting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: graph-online-meetings.getonlinemeeting
      with:
        meeting-id: tools.meeting-id
      outputParameters:
      - type: object
        mapping: $.