# io.github.VikrantSingh01/adaptive-cards-mcp (npm · adaptive-cards-mcp)

Generate, validate, and optimize Adaptive Cards for Teams, Outlook, and Copilot.

- Trust score: 70/100 (medium)
- Change this week: +46
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `adaptive-cards-mcp`: 70/100 (this document), [markdown](https://verifymcp.io/servers/vikrantsingh01-adaptive-cards-mcp/adaptive-cards-mcp.md), [page](https://verifymcp.io/servers/vikrantsingh01-adaptive-cards-mcp/adaptive-cards-mcp)

## Channel facts

- Registry: `npm`
- Package: `adaptive-cards-mcp`
- Version: `2.3.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 137 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 82/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 922 tokens (~65/item across 14 items; 9 tools + 5 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 97/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 92% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add vikrantsingh01-adaptive-cards-mcp -- npx -y adaptive-cards-mcp
```

### Codex

```bash
codex mcp add vikrantsingh01-adaptive-cards-mcp -- npx -y adaptive-cards-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vikrantsingh01-adaptive-cards-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "adaptive-cards-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add vikrantsingh01-adaptive-cards-mcp --command npx --arg -y --arg adaptive-cards-mcp
```

### Hermes

```yaml
mcp_servers:
  vikrantsingh01-adaptive-cards-mcp:
    command: "npx"
    args: ["-y", "adaptive-cards-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "vikrantsingh01-adaptive-cards-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "adaptive-cards-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 70, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 66, +61)

- [security regression] Provenance: unverified → fail
- [security improvement] Malware scan: unverified → pass
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → 100
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-08-01 (score 5, −21)

- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 100 → unverified

### 2026-07-31 (score 26, −9)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 35, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-28 (score 53, +29)

- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Schema quality: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 92
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 24)

First indexed and scored.

## MCP tools (9)

### `generate_card` (~148 tokens)

Convert any content — natural language description, structured data, or a combination — into a valid Adaptive Card v1.6 JSON. Returns cardId for reference in subsequent tool calls.

Input parameters:

- `content` (string, required): Natural language description of the card to generate, or paste raw data/text.
- `data`: Optional structured data (JSON object or CSV string) to incorporate into the card
- `host` (string): Target host app. Default: generic
- `intent` (string): The intent of the card — helps select the best layout pattern
- `theme` (string): Theme for styling hints
- `version` (string): Target Adaptive Card schema version. Default: "1.6"

### `validate_card` (~99 tokens)

Validate an Adaptive Card JSON against the v1.6 schema. Returns diagnostics with suggested fixes for each error. Accepts card JSON or a cardId from a previous tool call.

Input parameters:

- `card` (required): The Adaptive Card JSON object to validate, or a cardId string
- `host` (string): Check compatibility with this host app. Default: generic
- `strictMode` (boolean): When true, warnings are treated as errors. Default: false

### `data_to_card` (~118 tokens)

Convert structured data (JSON array, CSV, key-value object) into the optimal Adaptive Card presentation.

Input parameters:

- `data` (required): The data to convert — JSON object, JSON array of objects, or CSV string
- `host` (string): Target host app. Default: generic
- `presentation` (string): Presentation type. "auto" (default) auto-selects
- `templateMode` (boolean): Generate a templated card with ${expression} data binding. Default: false
- `title` (string): Title for the card header

### `optimize_card` (~61 tokens)

Optimize an existing Adaptive Card. Accepts card JSON or a cardId.

Input parameters:

- `card` (required): The Adaptive Card JSON object or cardId to optimize
- `goals` (array): Optimization goals. Default: all
- `host` (string): Target host app

### `template_card` (~75 tokens)

Convert a static Adaptive Card into an Adaptive Card Template with ${expression} data binding.

Input parameters:

- `card`: A static Adaptive Card or cardId to convert into a template
- `dataShape` (object): Optional data shape hint
- `description` (string): If no card is provided, describe the card to generate as a template

### `transform_card` (~101 tokens)

Transform an Adaptive Card: upgrade/downgrade version, apply host-specific constraints, or flatten nesting.

Input parameters:

- `card` (required): The Adaptive Card JSON object or cardId to transform
- `targetHost` (string): Target host
- `targetVersion` (string): Target version for upgrade/downgrade (e.g., "1.3", "1.5", "1.6")
- `transform` (string, required): The type of transformation to apply

### `suggest_layout` (~41 tokens)

Recommend the best Adaptive Card layout pattern for a given description.

Input parameters:

- `constraints` (object)
- `description` (string, required): Describe the card you want to build

### `generate_and_validate` (~111 tokens)

Generate an Adaptive Card and immediately validate + optionally optimize it in a single call. Reduces tool-call overhead for common workflows.

Input parameters:

- `content` (string, required): Natural language description of the card to generate
- `data`: Optional structured data to incorporate
- `host` (string): Target host app
- `intent` (string): Card intent
- `optimizeGoals` (array): If provided, also optimize the card after generation
- `version` (string): Target version. Default: 1.6

### `card_workflow` (~82 tokens)

Execute a multi-step card pipeline in a single call. Steps: generate, validate, optimize, template, transform.

Input parameters:

- `content` (string): Content for generate step
- `data`: Data for generate/data_to_card step
- `host` (string)
- `steps` (array, required): Pipeline steps to execute in order
- `version` (string)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/vikrantsingh01-adaptive-cards-mcp/adaptive-cards-mcp#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 66
- 2026-08-01: 5
- 2026-07-31: 26
- 2026-07-30: 35
- 2026-07-28: 53
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/adaptive-cards-mcp
- Socket report: https://socket.dev/npm/package/adaptive-cards-mcp
- Repository: https://github.com/VikrantSingh01/adaptive-cards-mcp
- Changelog RSS feed: https://verifymcp.io/servers/vikrantsingh01-adaptive-cards-mcp/adaptive-cards-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/vikrantsingh01-adaptive-cards-mcp/adaptive-cards-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/vikrantsingh01-adaptive-cards-mcp/adaptive-cards-mcp
