MCP server intelligence profile

Open and Async MCP Server

Enables async-first working practices by providing tools to draft decision docs, convert meetings to async artifacts, score status updates, and triage sync vs async tasks. It also offers reference tools for the Open and Async book's principles and coaching prompts

Local OnlyOfficial distributionopen-and-async
Verified cleanNpm · 1.0.2

Our scanner tested version 1.0.2 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
11Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @open-and-async/mcp from npm

Version 1.0.2 declares 1 executable entrypoint.

npm install --save-exact @open-and-async/mcp@1.0.2
npx -y -p @open-and-async/mcp@1.0.2 open-async-mcp
MCP client configuration example
{
  "mcpServers": {
    "@open-and-async/mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@open-and-async/mcp@1.0.2",
        "open-async-mcp"
      ]
    }
  }
}

Identity

Canonical slugopen-and-async-mcp-server-64001822DeploymentLocal Only
Canonical packagenpm:@open-and-async/mcpRepositoryopen-and-async/mcp
First publishedLatest release
Last security verificationAug 15, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@open-and-async/mcp1.0.24Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@open-and-async/mcp1.0.2CurrentSep 5, 202611 toolsSucceeded · 3 resources · 5 promptsVerified clean
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-256aea2aaffd4527766531fb37809754a83d2ca4ab57590b67d8e3c1812d1795743
Scannermcp-proof-engine 0.1.0Scan completedAug 15, 2026
Security rating34 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "open-async-mcp"
]
Rating reasons
[
  "security_policy_not_observed"
]
0Proven
610Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
open-asyncServer-reported name
3Capability groups
Aug 14, 2026Observed

Tools 11

ToolCategoryAnnotationsRisk
book_outlineThe map of Open and Async: every section and chapter with a one-line TL;DR. Use it to find the right chapter for a topic.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
convert_meeting_to_asyncGiven a meeting's purpose or agenda, propose the async equivalent: the artifact that replaces it, where it lives, who decides, and the deadline. Meetings are a point of escalation, not the default.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "purpose": {
      "type": "string",
      "description": "Why the meeting exists / what it's meant to accomplish."
    },
    "agenda": {
      "description": "Agenda items, if any.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "purpose"
  ]
}
draft_decision_docTurn a decision plus its options into a structured, async-friendly decision record (ADR): context, options with tradeoffs, the decision, and its reversibility. Write the decision down so others can follow it without a meeting.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "decision": {
      "type": "string",
      "description": "The decision to be made, in one line."
    },
    "options": {
      "description": "Candidate options. Two or three is plenty.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "context": {
      "description": "Background: what forces this decision now.",
      "type": "string"
    }
  },
  "required": [
    "decision"
  ]
}
get_chapter_summaryReturn a chapter's TL;DR plus its taglines and a link to read the full chapter. Summary only — no body text.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "description": "Chapter slug, e.g. 'impact-over-input' (from book_outline)."
    }
  },
  "required": [
    "slug"
  ]
}
get_guidanceRole-aware guidance (manager or IC) for a topic, paraphrased from the book's role callouts, with a chapter citation.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "topic": {
      "type": "string",
      "description": "The topic you want guidance on."
    },
    "role": {
      "description": "Audience: 'manager', 'ic', or 'any' (default).",
      "type": "string",
      "enum": [
        "manager",
        "ic",
        "any"
      ]
    }
  },
  "required": [
    "topic"
  ]
}
get_taglinesReturn the book's shareable taglines and their quote-card URLs. Optionally filter to one chapter.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "chapter": {
      "description": "Chapter slug to filter by (omit for all).",
      "type": "string"
    }
  }
}
handle_objectionMap a common objection to open/async work ('async is slow', 'remote kills culture') to the book's reframe, with a chapter citation.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "objection": {
      "type": "string",
      "description": "The skepticism or pushback to address."
    }
  },
  "required": [
    "objection"
  ]
}
run_async_standupReturn a structured async-standup prompt a team can adopt in any chat or issue — replaces the daily sync standup with a written, searchable thread that respects every time zone.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "cadence": {
      "description": "e.g. 'daily', 'twice a week'. Defaults to daily.",
      "type": "string"
    }
  }
}
score_status_updateScore a draft status update against the 'work loudly / no surprises' rubric and suggest fixes. Good updates surface blockers early, state outcomes over activity, and link to the work.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "update": {
      "type": "string",
      "description": "The draft status update to score."
    }
  },
  "required": [
    "update"
  ]
}
search_principlesKeyword search across the book's summary corpus (TL;DRs, key-takeaways, taglines, and reviewed frameworks). Returns short, cited snippets — a snippet view, not full text.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "What you're looking for."
    },
    "limit": {
      "description": "Max results (default 5, capped at 10).",
      "type": "integer",
      "minimum": 1,
      "maximum": 10
    }
  },
  "required": [
    "query"
  ]
}
triage_sync_vs_asyncRecommend whether a task should be handled synchronously or asynchronously, using the decision rule from 'meetings are a point of escalation.' Async is the default; sync is the escalation.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "task": {
      "type": "string",
      "description": "The task, conversation, or decision to triage."
    }
  },
  "required": [
    "task"
  ]
}

Resources 3

  • aboutbook://about

    What this server is, what it does and doesn't contain, and where to get the book. Pull it on demand; nothing is pushed into responses.

  • outlinebook://outline

    Sections, chapters, and one-line TL;DRs. The book's table of contents.

  • taglinesbook://taglines

    Shareable 'bumper-sticker' lines, each with its /q/<slug> quote-card URL.

Resource templates 0

  • None observed.

Prompts 5

  • async-standupasync-standup

    Draft an async standup post from your day's work — outcome-first, blockers surfaced, everything linked.

  • coachcoach

    Run the full Open & Async method on a situation: triage sync vs async, generate the right artifact, enrich with role guidance, and cap with a shareable tagline — one composed, consulting-style deliverable.

  • meeting-to-issuemeeting-to-issue

    Convert a meeting agenda into the async artifact that should replace it.

  • weekly-updateweekly-update

    Draft a weekly update that doesn't suck — outcomes over activity, risks surfaced early, skimmable.

  • write-adrwrite-adr

    Draft an architecture/architectural decision record from a decision and its options.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Open and Async MCP Server questions

How do I install Open and Async MCP Server?

Install the selected package version with: npm install --save-exact @open-and-async/mcp@1.0.2

What tools does Open and Async MCP Server provide?

Open and Async MCP Server exposed 11 tools during independent protocol observation, including book_outline, convert_meeting_to_async, draft_decision_doc, get_chapter_summary, get_guidance, get_taglines, handle_objection, run_async_standup, and others.

Is Open and Async MCP Server secure?

Our scanner tested version 1.0.2 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Let’s talk about MCP security.

Share your details and our security team will contact you.