svn-agent MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SVN_AGENT_BIN_DIR | No | Path to the directory containing SVN and dos2unix binaries. | |
| SVN_AGENT_READONLY | No | Set to 'true' to enable read-only mode (legacy, use --readonly argument instead). | |
| SVN_AGENT_SVN_PATH | No | Path to the SVN executable. | |
| SVN_AGENT_TIMEOUT_MS | No | Timeout in milliseconds for SVN commands. | |
| SVN_AGENT_DOS2UNIX_DIR | No | Path to the directory containing dos2unix utility. | |
| SVN_AGENT_MAX_DIFF_LINES | No | Maximum number of lines in diff output. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| svn_self_checkB | Report MCP release pointer, bundled runtime payload counts, startup probe, and packaging script health. |
| svn_diagnoseA | Read-only working-copy diagnostics for local status, remote status, HEAD info, and latest log reachability. |
| svn_statusB | Run scoped svn status and return structured changed paths and conflicts. |
| svn_infoA | Run svn info and detect mixed-revision working-copy state. |
| svn_diffB | Run scoped svn diff; ignore-EOL is enabled by default with internal diff and returns per-file counts. |
| svn_logC | Run svn log and return structured log entries. |
| eol_checkA | Inspect EOL kind, BOM, and svn:eol-style for explicit files. |
| svn_propgetB | Read one working-copy property from explicit paths. |
| svn_precommitC | Composite read-only precommit check: status, ignore-EOL diff, EOL check, guard dry-run, and mixed-revision warning. |
| eol_fix_verifiedC | Convert one file's EOL with unix2dos/dos2unix inferred from svn:eol-style, then verify the ignored-EOL diff. |
| svn_addC | Guarded svn add for explicit files, adding needed parent directories, or explicitly recursive directories. |
| svn_commitC | Guarded svn commit using a temp -F message file and explicit paths. |
| svn_moveC | Guarded working-copy svn move with parent directory creation. |
| svn_renameC | Alias for guarded working-copy svn move/rename with parent directory creation. |
| svn_copyC | Guarded working-copy svn copy with parent directory creation. |
| svn_updateC | Guarded svn update with --accept postpone. |
| svn_revertB | Preview or perform guarded svn revert for explicit paths. |
| svn_resolvedC | Resolve one conflicted path with an explicit accept mode. |
| svn_cleanupC | Run svn cleanup without destructive cleanup flags. |
| svn_propset_eol_styleA | Set svn:eol-style only for explicit files whose property is missing or mismatched. |
| svn_propsetC | Guarded working-copy svn propset for explicit paths. |
| svn_exportC | Run explicit svn export. |
| svn_importC | Run svn import with a temp -F message file. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 23 tools
Most tools have clearly distinct purposes (e.g., svn_add vs svn_commit). However, svn_move and svn_rename are aliases for the same operation, causing redundancy. Additionally, eol_check and eol_fix_verified overlap in scope, but descriptions clarify their difference.
The majority of tools follow a consistent svn_{verb} pattern. However, two EOL-related tools use an eol_ prefix instead of svn_eol_, and svn_self_check does not follow the verb pattern. This inconsistency may confuse an agent.
23 tools is an appropriate number for a Subversion client agent. It covers a wide range of operations without being overwhelming or too sparse. Each tool seems necessary for distinct SVN tasks.
The tool set covers many core SVN operations, but notable gaps exist: svn_delete, svn_merge, svn_switch, and svn_blame are missing. For a comprehensive SVN workflow, these operations are important. The precommit check and EOL handling are nice additions, but the gaps reduce completeness.