ami survey for VS Code
io.github.speedofred/ami-survey
Measures the cost, tokens and duration of a completed agent workflow from its session log.
client:VS Code
transport:stdio
runtime:pypi
Install ami survey in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ami-api-token",
"description": "AMI_API_TOKEN",
"password": true
}
],
"servers": {
"ami-survey": {
"type": "stdio",
"command": "uvx",
"args": [
"ami-survey"
],
"env": {
"AMI_API_TOKEN": "${input:ami-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs