Meeting2mission

v1.0.0

A powerful MCP server built with NitroStack

Connection Setup

Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):

{
  "mcpServers": {
    // your other mcp servers
    "meeting2mission": {
      "url": "https://meeting2mission-1-one-piece-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
    }
  }
}

Connect remote tools directly via Claude's Web UI:

Add custom connector BETA
Connect Claude to your data and tools. Learn more about connectors or get started with pre-built ones.
Advanced settings
Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.

Configure custom tools directly via ChatGPT's Web UI:

New App
PNG only. Best results at 256 x 256 px or larger. Max file size: 10 KB
Custom MCP servers introduce risk. Learn more
OpenAI hasn't reviewed this MCP server. Attackers may attempt to steal your data or trick the model into taking unintended actions, including destroying data.

Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):

{
  "mcpServers": {
    // your other mcp servers
    "meeting2mission": {
      "serverUrl": "https://meeting2mission-1-one-piece-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
    }
  }
}

Add the following configuration block to your Codex configuration file (~/.codex/config.toml):

[mcp_servers.meeting2mission]
url = "https://meeting2mission-1-one-piece-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"

Connect directly using the Server-Sent Events endpoint:

https://meeting2mission-1-one-piece-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp
Available Tools
import_meeting

Import a meeting from Zoom, Teams, Google Meet, Slack Huddles, or MP4 upload. Extracts metadata, participants, and transcript.

extract_decisions

Extract key decisions, action items, risks, and deadlines from a meeting transcript. Applies confidence scoring and owner detection. Owner names are resolved to real identities automatically — never pass or expect email addresses here.

create_jira_ticket

Create a real Jira ticket from a decision with owner assignment and deadline. If confidence is below 80%, no ticket is created and the decision is flagged for manual approval instead.

update_jira_ticket

Update a Jira ticket status/transition and optionally add a comment.

fetch_jira_status

Fetch the current status of a Jira ticket.

close_jira_ticket

Transition a Jira ticket to Done with a resolution comment.

create_calendar_event

Create a real Google Calendar event (deadline reminder) for a task.

create_deadline_event

Create a real Google Calendar deadline event for a task (alias of create_calendar_event with eventType=deadline).

create_reminder

Create a real Google Calendar reminder event ahead of a task deadline.

send_followup

Send a real Slack message summarizing decisions, owner assignments, and deadlines from a meeting.

send_manager_escalation

Send a real Slack escalation ping for an overdue task to the manager/escalation channel.

send_approval_request

Send a real Slack approval request for a low-confidence decision (confidence < 80%) before any ticket/owner/deadline is created.

create_github_issue

Create a real GitHub issue linked to a task, and record the issue URL on the task.

fetch_pull_requests

Fetch real pull requests from the configured GitHub repository.

fetch_commits

Fetch real commits from the configured GitHub repository.

link_pr_to_decision

Link an existing GitHub pull request number to a task/decision, tracking merge status.

publish_report

Generate and publish a real weekly execution report to Notion, aggregating meetings, decisions, and task status for the given period.

create_project_page

Create a real Notion project page.

update_project_status

Append a real status update block to an existing Notion project page.

get_dashboard

Get the Control Tower Dashboard snapshot: decisions detected, tasks created/completed/overdue, pending approvals, escalations triggered, completion rate, upcoming deadlines, and team accountability.

send_email

Send a real email to one or more recipients.

send_deadline_reminder

Send a real email reminder ahead of a task deadline.

send_weekly_summary

Generate and email a real weekly execution report (meetings, decisions, task status) to the founder/CTO or any recipient list.

resolve_owner

Resolve a person's name (as mentioned in a meeting transcript) into their email, Slack user ID, Jira account ID, and GitHub username. Returns a clarification request if the name is ambiguous or unknown, instead of failing.

upsert_team_member

Register or update a team member's identity mapping (name -> email/Slack/Jira/GitHub IDs), so future references to their name resolve automatically without asking again.

process_meeting

Run the full close-the-loop pipeline for an already-imported meeting in ONE call: extract decisions, resolve owners and deadlines automatically, create Jira tickets for high-confidence decisions, schedule calendar deadlines, and send a Slack follow-up. Low-confidence or unresolvable decisions are returned as pending approvals instead of guessed. Prefer this over manually chaining extract_decisions -> create_jira_ticket -> create_calendar_event -> send_followup.