AMI survey client, v1 (frozen). Measures what an agent workflow cost, from the runtime's own session log.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
claude mcp add ami-survey-client-v1 -- uvx ami-survey-client-v1{
"mcpServers": {
"ami-survey-client-v1": {
"command": "uvx",
"args": ["ami-survey-client-v1"]
}
}
}Resumen de MCP Servers
<!-- mcp-name: io.github.speedofred/ami-survey -->
# AMI survey client
Measures what a completed agent workflow cost to run, by reading the runtime's
own session log, and submits the result to the AMI survey at
`survey.agentbenchmark.dev`.
The cost of a single API call is easy to obtain. The cost of one finished piece
of work is not: one triaged ticket, one screened CV, one drafted reply, across
every call, retry and tool round-trip the agent made getting there. This
measures that figure.
Every number is read from the runtime's records rather than reported by the
agent. An agent asked how many tokens it has just used will estimate, and will
present the estimate with confidence.
## What comes back
A real run of six support tickets, triaged and answered by Claude Opus 5 in
Claude Code:
```
Maturity Index 85.0 Strong (observability 40%, evidence 30%, quality 30%)
Performance 78.13 Strong confidence Very High
quality 80.0 graded Good on ami-quality-v2
cost 72.73 $0.123226 per ticket ($0.739355 for the run)
speed 84.47 20.90s per ticket
evidence 70.0 measured, on a self-issued token
observability 100.0
findings
weakness Cost is the weakest pillar at 72.73; speed is strongest at 84.47.
$0.123226 per unit against a $0.01 reference. A cheaper model, or
fewer calls, moves this; check calls[] for where the tokens went.
note Cost and speed were scored against a provisional reference, which is
a placeholder rather than a measurement. Do not quote them as settled
yet. The Maturity Index does not use the reference and is unaffected.
```
**$0.12 per ticket, 21 seconds per ticket.** That is the figure this exists to
produce, and it is the one most teams cannot currently state about their own
work.
The findings record where the scorecard's own numbers are soft. A cost reference
that is still a placeholder is reported as a placeholder rather than folded into
the score.
## Install
There are two routes. What separates them, and what separates the hosts below,
is whether anything can read your runtime's logs. That determines whether the
result is recorded as `measured` or `unmeasured`.
### Install the client
One block of configuration, then restart the agent.
**Claude Code**, in `~/.claude.json`, or through the Developer settings in
Claude Desktop:
```json
{ "mcpServers": { "ami-survey": { "command": "uvx", "args": ["ami-survey"] } } }
```
Runs are measured: the client reads Claude Code's own session log, so the token
counts and the cost come from the runtime rather than from the agent.
<details>
<summary><b>Codex</b> (measured)</summary>
In `~/.codex/config.toml`. Codex uses TOML here, not JSON:
```toml
[mcp_servers.ami-survey]
command = "uvx"
args = ["ami-survey"]
```
The client reads Codex's rollout log. This also covers a local or self-hosted
model driven through Codex, because the log is written either way.
</details>
<details>
<summary><b>Copilot</b> (not measured)</summary>
In `.vscode/mcp.json`, or your user profile through the **MCP: Open User
Configuration** command. The key is `servers` here, not `mcpServers`:
```json
{ "servers": { "ami-survey": { "command": "uvx", "args": ["ami-survey"] } } }
```
The tools work and the survey submits, but Copilot writes no session log the
client can read. The run carries the workflow, the grade and the stage timings
without token counts or cost, and is recorded as `unmeasured`.
</details>
Then, once the agent finishes a piece of work, ask it:
> Take the AMI survey regarding the ticket triage you just did
There is nothing to clone and nothing to keep updated. No token needs to be
supplied: the first call that requires one registers the machine and stores the
token at `~/.ami-survey/token`.
`uvx` is part of [uv](https://docs.astral.sh/uv/), the tool the MCP
documentation uses for Python servers. If uv is not installed,
[GETTING-STARTED.md](https://github.com/speedofred/ami-survey-client-v1/blob/main/GETTING-STARTED.md)
gives a `pipx` form and a route that requires neither.
If you already hold a token, set it as `AMI_API_TOKEN` in that block's `env` and
it will be used instead of registering a new one.
### Or use the remote connector, with nothing installed
In claude.ai, open Settings, then Connectors, then Add custom connector, and
supply:
```
https://survey.agentbenchmark.dev/mcp
```
Nothing is installed and no token is required. These runs are recorded as
`unmeasured` and are never compared against measured ones: a remote server
cannot read your runtime's logs, so token counts and cost are absent rather than
estimated.
## Licence
MIT. Use it, modify it, redistribute it, include it in your own work.
The licence covers this client only. It grants no rights in the survey service
the client submits to, or in the data that service collects.
Full terms in [LICENSE](https://github.com/speedofred/ami-survey-client-v1/blob/main/LICENSE).
## What leaves your computer
Token counts, timings, model names, the stage names the workflow declared, and
the grade. **Not your files, not your prompts, not your shell commands.**
[GETTING-STARTED.md](https://github.com/speedofred/ami-survey-client-v1/blob/main/GETTING-STARTED.md)
sets this out in full.
Submissions go to `survey.agentbenchmark.dev` and nowhere else. That destination
is a constant in the source rather than a setting, so a stale environment
variable cannot redirect a submission onto your own disk. That is the one
failure which would make a run appear successful while collecting nothing.
## Requirements
Python 3.9 or newer. No dependencies; the standard library only.
## Further reading
- [GETTING-STARTED.md](https://github.com/speedofred/ami-survey-client-v1/blob/main/GETTING-STARTED.md)
assumes no prior setup, covers macOS, Linux and Windows, and explains what to
do when the tools do not appear.
- [COMMANDS.md](https://github.com/speedofred/ami-survey-client-v1/blob/main/COMMANDS.md)
documents the clone-and-run route, which benchmarks one workflow across
several models on your own API key. It is not required in order to take part.
- [MAKE-IT-MEASURABLE.md](https://github.com/speedofred/ami-survey-client-v1/blob/main/MAKE-IT-MEASURABLE.md)
explains how to structure a workflow so that there is something worth
measuring.
Lo que la gente pregunta sobre ami-survey-client-v1
¿Qué es speedofred/ami-survey-client-v1?
+
speedofred/ami-survey-client-v1 es mcp servers para el ecosistema de Claude AI. AMI survey client, v1 (frozen). Measures what an agent workflow cost, from the runtime's own session log. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-09.
¿Cómo se instala ami-survey-client-v1?
+
Puedes instalar ami-survey-client-v1 clonando el repositorio (https://github.com/speedofred/ami-survey-client-v1) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar speedofred/ami-survey-client-v1?
+
Nuestro agente de seguridad ha analizado speedofred/ami-survey-client-v1 y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene speedofred/ami-survey-client-v1?
+
speedofred/ami-survey-client-v1 es mantenido por speedofred. La última actividad registrada en GitHub es del 2026-09-09, con 0 issues abiertos.
¿Hay alternativas a ami-survey-client-v1?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega ami-survey-client-v1 en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/speedofred-ami-survey-client-v1)<a href="https://claudewave.com/repo/speedofred-ami-survey-client-v1"><img src="https://claudewave.com/api/badge/speedofred-ami-survey-client-v1" alt="Featured on ClaudeWave: speedofred/ami-survey-client-v1" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!