Package Exports
- ide-output-reader-mcp
- ide-output-reader-mcp/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ide-output-reader-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
IDE Output Reader MCP Server
A Model Context Protocol (MCP) server for reading IDE output, test results, and problems from development environments.
Features
- Test Results Reading: Read Jest test output and results
- Problem Detection: Read linter errors and IDE problems
- Test Monitoring: Monitor test files for changes
- Status Checking: Check current test status
- Failure Notifications: Notify about test failures
Installation
npm install -g ide-output-reader-mcpUsage
With Cursor IDE
Add to your .cursor/mcp.json:
{
"mcpServers": {
"ide-output-reader": {
"command": "node",
"args": ["C:\\path\\to\\ide-output-reader-mcp\\dist\\index.js", "--transport=stdio"],
"cwd": "C:\\path\\to\\ide-output-reader-mcp",
"trusted": true,
"autoAllow": true,
"allowAllTools": true,
"trustedTools": [
"readTestResults",
"readProblemsWindow",
"startTestWatcher",
"checkTestStatus",
"notifyTestFailure"
]
}
}
}Available Tools
readTestResults- Read Jest test output and resultsreadProblemsWindow- Read linter errors and IDE problemsstartTestWatcher- Start monitoring test filescheckTestStatus- Check current test statusnotifyTestFailure- Send test failure notifications
Development
# Install dependencies
npm install
# Build
npm run build
# Run in development
npm run devLicense
MIT