MCP server for MRI - Test Management System
npm install mri-mcp-server

MCP (Model Context Protocol) server for MRI - Test Management System.
Allows AI agents (Claude, Cursor, etc.) to create and manage test scenarios automatically.
Full Documentation | Get API Key
``bashUsing npx (recommended - always latest)
npx mri-mcp-server
Configuration
$3
Go to MRI Settings and generate an API key.
$3
Claude Desktop (
~/.config/claude/mcp.json):`json
{
"mcpServers": {
"mri": {
"command": "npx",
"args": ["mri-mcp-server"],
"env": {
"MRI_API_KEY": "mri_sk_your_key_here"
}
}
}
}
`Cursor (
.cursor/mcp.json):`json
{
"mcpServers": {
"mri": {
"command": "npx",
"args": ["mri-mcp-server"],
"env": {
"MRI_API_KEY": "mri_sk_your_key_here"
}
}
}
}
`Available Tools
| Tool | Description |
|------|-------------|
|
mri_list_projects | List all accessible projects |
| mri_list_suites | List test suites in a project |
| mri_get_suite | Get suite with all scenarios |
| mri_create_suite | Create new suite from markdown |
| mri_add_scenarios | Add scenarios to existing suite |Available Resources
| Resource | Description |
|----------|-------------|
|
mri://template | Markdown format template |
| mri://prompt | System prompt for AI |
| mri://guidelines | Your custom guidelines |Usage Example
Ask your AI agent:
> "Create test scenarios for user authentication"
The agent will:
1. Read
mri://template to understand the format
2. Read mri://prompt and mri://guidelines for writing instructions
3. Use mri_list_projects to find available projects
4. Generate markdown following the format
5. Use mri_create_suite to submit to MRIEnvironment Variables
| Variable | Required | Description |
|----------|----------|-------------|
|
MRI_API_KEY | Yes | Your MRI API key |
| MRI_API_URL | No | Custom API URL (default: https://mri.dewxit.com/api/v1) |Development
`bash
Install dependencies
npm installRun in development mode
npm run devBuild
npm run buildRun built version
npm start
``MIT
---
For detailed API reference, examples, and guides, visit the full documentation.