Documentation and quality tools for Gorev project
Gorev MCP server exists for a simple reason — assistants are far more useful when they can act on Gorev directly instead of describing what you should do. Documentation and quality tools for Gorev project.
Gorev is a powerful Model Context Protocol (MCP) server written in Go that provides task management capabilities to all MCP-compatible AI editors (Claude Desktop, VS Code, Windsurf, Cursor, Zed, etc.). It combines project management, task tracking, and organization needs with the power of AI assistants to boost your productivity.
Once Gorev is connected, these are the calls the assistant has available:
Type-Safe — 100% TypeScript with zero parsing errorsFaster — Direct HTTP calls vs. stdio + markdown parsingFeatures — The Features tool exposed by this serverReference — The Reference tool exposed by this serverDevelopment — The Development tool exposed by this serverRequirements — The Requirements tool exposed by this serverCommands — The Commands tool exposed by this serverYou will need one environment variable: GOREV_LANG. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Installation goes through your MCP client rather than a global install: point it at @mehmetsenol/gorev-mcp-server on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Gorev's toolset — Type-Safe, Faster, Features and 4 more — is a fair guide to whether it matches your workflow. It is maintained by msenol; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| Type-Safe | 100% TypeScript with zero parsing errors |
| Faster | Direct HTTP calls vs. stdio + markdown parsing |
| Features | The Features tool exposed by this server. |
| Reference | The Reference tool exposed by this server. |
| Development | The Development tool exposed by this server. |
| Requirements | The Requirements tool exposed by this server. |
| Commands | The Commands tool exposed by this server. |
**For Cursor:**
```json
// .cursor/mcp.json (workspace root)
{
"mcpServers": {
"gorev": {
"command": "npx",
"args": [
"-y",
"@mehmetsenol/gorev-mcp-server@latest"
],
"env": {
"GOREV_LANG": "en"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| GOREV_LANG | Configuration value read at startup. | Optional |
A knowledge graph your assistant keeps between sessions — entities, relations and observations that persist.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
A structured scratchpad for hard problems — stepwise reasoning with revisions, branches and visible logic.
Symbol-level code navigation, refactoring and memory for coding agents — the IDE brain your assistant has been missing.
Chat with your second brain — search, read and write vault notes through the Local REST API.