{
"mcpServers": {
"testrail-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Test Rail MCP Server - Spring Boot & Java
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 56 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Testrail Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Spring Boot MCP (Model Context Protocol) Server that enables AI assistants like Cursor to interact with TestRail. Built with Java 17 and Spring AI, this server exposes a powerful, searchable toolset for TestRail operations while keeping your credentials secure on your local machine.
For detailed documentation with comprehensive Mermaid diagrams, see the docs/ folder:
| Document | Description | |---|---| | Architecture | Detailed architecture with class diagrams, component diagrams, and data flow | | Tools Reference | Complete reference for all 101 internal tools with parameters and examples | | Security | Security architecture, threat model, and credential management | | Integration Guide | Step-by-step Cursor IDE integration and troubleshooting |
search_tools) or by browsing a structured catalog (get_categories, get_tools_by_category).search_tools method allows the LLM to find the right tool for the job using natural language.flowchart TB
subgraph IDE["Cursor IDE"]
UP[User Prompt]
LLM[Claude LLM]
UP --> LLM
end
subgraph MCP["MCP Server - Local Machine"]
direction TB
STDIO[STDIO Transport]
McpExposed[4-Tool Gateway]
Lucene[LuceneToolIndexService]
Registry[InternalToolRegistry]
subgraph Tools["Internal Tools (101)"]
CT[Cases Tools]
PT[Projects Tools]
RT[Runs Tools]
RST[Results Tools]
ST[Sections Tools]
end
TC[TestRail API Client]
STDIO --> McpExposed
McpExposed --> Lucene
McpExposed --> Registry
Registry --> Tools
Tools --> TC
end
subgraph Config["Local Configuration"]
ENV[Environment Variables]
CREDS["TESTRAIL_URL<br/>TESTRAIL_USERNAME<br/>TESTRAIL_API_KEY"]
ENV --> CREDS
end
subgraph TR["TestRail Instance"]
API[TestRail API v2]
end
LLM <-->|MCP Protocol| STDIO
TC <-->|HTTPS + Basic Auth| API
CREDS -.->|Loaded at startup| TC
style CREDS fill:#ff6b6b,color:#fff
style LLM fill:#a29bfe,color:#fff
style API fill:#74b9ff,color:#fff
flowchart LR
subgraph SpringBoot["Spring Boot Application"]
direction TB
subgraph Config["Configuration Layer"]
TP[TestrailProperties]
TCC[TestrailClientConfig]
MCC[McpToolConfig]
end
subgraph Client["API Client Layer"]
TAC[TestrailApiClient]
WC[WebClient]
end
subgraph RegistryLayer["Tool Registry & Search"]
Registry[InternalToolRegistry]
Lucene[LuceneToolIndexService]
end
subg
... [View full README on GitHub](https://github.com/maheshyaddanapudi/testrail-mcp-server#readme)