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.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"resharper-mcp": {
"command": "npx",
"args": [
"-y",
"joshua-light/resharper-mcp"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add resharper-mcp npx -y joshua-light/resharper-mcp
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"resharper-mcp": {
"command": "npx",
"args": [
"-y",
"joshua-light/resharper-mcp"
]
}
}
}
📋 Copy