kiro-mcp

kiro-mcp is an agent for coding agents from Aqualia/Alph. It costs 0 tokens per session (4,017 once invoked), scanned B, original, MIT.

A Kiro integration for configuring external MCP tools, where MCP is a standard way for an AI coding agent to connect to other programs and services.

In plain words
What is it for?
Use it to configure MCP servers in Kiro’s JSON files, connect local programs or remote services, approve tools, and inspect connection logs.
Why use it?
It brings Kiro’s local and remote tool settings into one documented setup, including project settings that override user-wide settings.

Agent

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/aqualia/alph/kiro-mcp
Clone the repo
git clone --depth 1 https://github.com/Aqualia/Alph

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kiro-mcp

README.md
[![agentmods](https://agentmods.dev/badge/agents/aqualia/alph/kiro-mcp.svg)](https://agentmods.dev/agents/aqualia/alph/kiro-mcp)
Your own site
<a href="https://agentmods.dev/agents/aqualia/alph/kiro-mcp"><img src="https://agentmods.dev/badge/agents/aqualia/alph/kiro-mcp.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,017 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.04017
Opus 5 $0.00000 $0.02008
Sonnet 5 $0.00000 $0.00803
Haiku 4.5 $0.00000 $0.00402

Measured 5d ago against content hash 01cc14519051, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

kiro-mcp scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

chmod 600 ~/.kiro/settings/mcp.json
docs/agents/kiro-mcp.md · 679 lines

How it starts

The opening of the file, as written. The whole thing — 679 lines — stays where its author put it; the contents beside it link to each section on GitHub.

# Kiro MCP — Integration Report for Alph

Scope: essentials only for **Alph Phase-1** support of **all platforms** and **both local & remote** MCP servers under Kiro.

## 1) What Kiro supports (at a glance)

* **Config format & keys (JSON)** — top-level "mcpServers" map with per-server objects:

  * command (string, required), args (array, required), env (object, optional), disabled (bool), autoApprove (array of tool names). ([Kiro][1])

* **Config locations & precedence**

  * **User/global**: ~/.kiro/settings/mcp.json

  * **Workspace/project**: .kiro/settings/mcp.json

  * **Merge rule**: both are merged with **workspace taking precedence**. ([Kiro][1])

* **Transports**

  * **Native**: local **STDIO** (spawned via command/args). ([Kiro][1])

  * **Remote endpoints**: supported **indirectly** via the mcp-remote wrapper (SSE). ([Kiro][2])

  * (General MCP note: protocol defines **STDIO** and **HTTP/SSE** transports.) ([Model Context Protocol][3])

* **Enablement & UX**

  * Toggle MCP in **Settings**, manage connections in **MCP Servers** tab, and view **Kiro – MCP Logs** in the Output pane. ([Kiro][4])

* **Security**

  * Treat tokens as secrets, prefer env vars, restrict file permissions, be conservative with autoApprove. ([Kiro][5])


## 2) File paths Alph must write

Alph’s file writer should support both scopes and create parent directories.

| Scope | macOS/Linux | Windows (PowerShell) |

| ----------------------- | --------------------------------------- | --------------------------------------- |

| **User (global)** | ~/.kiro/settings/mcp.json | %USERPROFILE%\\.kiro\\settings\\mcp.json |

| **Workspace (project)** | <PROJECT\_DIR>/.kiro/settings/mcp.json | <PROJECT\_DIR>\\.kiro\\settings\\mcp.json |

* These paths and the **workspace-overrides-user** rule are defined by Kiro docs. ([Kiro][1])

**Permissions (recommended by Kiro):**


\# Unix

chmod 600 ~/.kiro/settings/mcp.json

chmod 600 .kiro/settings/mcp.json

([Kiro][5])


## 3) Kiro config object “shape” (canonical)


{

&nbsp; "mcpServers": {

&nbsp;   "<server-name>": {

&nbsp;     "command": "<executable-or-launcher>",

&nbsp;     "args": \["<arg1>", "<arg2>"],

&nbsp;     "env": {

&nbsp;       "ENV\_VAR1": "value1",

&nbsp;       "ENV\_VAR2": "value2"

&nbsp;     },

&nbsp;     "disabled": false,

&nbsp;     "autoApprove": \["tool\_name1", "tool\_name2"]

&nbsp;   }

&nbsp; }

}

* Keys/semantics match Kiro’s **Configuration** page. ([Kiro][1])


## 4) Local servers (STDIO) — ready-to-paste examples

### 4.1 Python-based server via **uv/uvx**

**macOS/Linux (user scope):**


{

&nbsp; "mcpServers": {

&nbsp;   "aws-docs": {

&nbsp;     "command": "uvx",

&nbsp;     "args": \["awslabs.aws-documentation-mcp-server@latest"],

&nbsp;     "env": { "FASTMCP\_LOG\_LEVEL": "ERROR" },

&nbsp;     "disabled": false,

&nbsp;     "autoApprove": \[]

&nbsp;   }

&nbsp; }

}

**Windows (user scope):**


{

&nbsp; "mcpServers": {

&nbsp;   "aws-docs": {

&nbsp;     "command": "uv",

&nbsp;     "args": \[

&nbsp;       "tool","run","--from","awslabs.aws-documentation-mcp-server@latest",

&nbsp;       "awslabs.aws-documentation-mcp-server.exe"

&nbsp;     ],

&nbsp;     "env": { "FASTMCP\_LOG\_LEVEL": "ERROR" }

&nbsp;   }

&nbsp; }

}

* These are taken from Kiro’s **Servers** guide. ([Kiro][2])

### 4.2 Node server via **npx**


{

&nbsp; "mcpServers": {

&nbsp;   "web-search": {

&nbsp;     "command": "npx",

&nbsp;     "args": \["-y", "@modelcontextprotocol/server-bravesearch"],

&nbsp;     "env": { "BRAVE\_API\_KEY": "your-api-key" }

&nbsp;   }

&nbsp; }

}

Read the full file on GitHub · 679 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 679 lines · 0 tokens per session scan B 01cc14519051

Subscribe to this mod's changes

kiro-mcp is an agent published in the GitHub repository Aqualia/Alph (69 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 4,017 tokens. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.