An MCP server that lives inside Rider and exposes Resharper-powered tools for AI agents that allow working with actual codebase semantics instead of `grep` approximations.
{
"mcpServers": {
"resharper-mcp": {
"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.
An MCP server that lives inside Rider and exposes Resharper-powered tools for AI agents that allow working with actual codebase semantics instead of `grep` approximations.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 20 days ago. 8 stars.
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.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Resharper Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that runs inside the ReSharper/Rider backend process, exposing code intelligence features to AI assistants via HTTP.
Supports C#, F#, VB, and any language with a ReSharper PSI implementation.
| Tool | Description |
|------|-------------|
| find_usages | Find all references to a symbol |
| get_symbol_info | Detailed symbol info: kind, type, params, docs, base types, members |
| find_implementations | Find implementations of interfaces/abstract classes and overrides |
| get_file_errors | Get compile errors and unresolved references |
| search_symbol | Search symbols by name (substring match) across the solution |
| go_to_definition | Navigate to a symbol's declaration with source text |
| get_solution_structure | List projects, target frameworks, and project references |
| browse_namespace | Browse namespace hierarchy: child namespaces and types |
| list_symbols_in_file | List all declarations in a file |
| list_solutions | List all open solutions across Rider instances |
| fix_usings | Fix missing using directives in C# files |
| format_file | Format, clean up, or apply code style to a file |
Tools that operate on a symbol accept two modes:
filePath + line + column (1-based)symbolName (e.g. "MyClass", "Namespace.MyClass", "MyClass.MyMethod")An optional kind filter ("type", "method", "property", "field", "event") helps disambiguate. When multiple symbols match, tools return an ambiguity error listing all candidates with their qualified names, kinds, and locations.
Install the plugin from Rider: Settings → Plugins → Marketplace → search for "MCP Server for Code Intelligence".
./install-rider.sh
# Restart Rider
The script builds the plugin and copies it to your local Rider plugin directory.
Add to your MCP client config (e.g. Claude Code settings.json):
{
"mcpServers": {
"resharper": {
"type": "http",
"url": "http://127.0.0.1:23741/"
}
}
}
The server starts automatically when you open a solution in Rider.
Set RESHARPER_MCP_PORT environment variable to override the default port.
# Build the .NET backend
dotnet build src/ReSharperMcp/ReSharperMcp.csproj -c Release
# Build a distributable plugin ZIP
./build-plugin.sh
SolutionComponent (activated when a solution opens, stopped when it closes)127.0.0.1:23741 implementing MCP over JSON-RPC 2.0net472 (required by the ReSharper host process)