ARNO
Related Servers
Alternatives to ARNO
- AlicenseNot gradedqualityFmaintenanceRuns a language server and provides tools for communicating with it. Language servers excel at tasks that LLMs often struggle with, such as precisely understanding types, understanding relationships, and providing accurate symbol references.1,591BSD 3-Clause
- AlicenseAqualityAmaintenanceA fully featured coding agent that uses symbolic operations (enabled by language servers) and works well even in large code bases. Essentially a free to use alternative to Cursor and Windsurf Agents, Cline, Roo Code and others.2942,914 PyPI29,468MIT
Related Servers
- AlicenseCqualityBmaintenanceLocal-first MCP runtime for coding agents with bounded workspace access, content-preconditioned writes, AST search, LSP navigation and diagnostics, and Git status/diff. Designed to give coding agents useful repository access without treating unrestricted shell access as the default integration boundary.2132MIT
- AlicenseAqualityAmaintenanceMCP server that keeps language server sessions warm and routes multiple languages through one process. Agents get persistent cross-file awareness, speculative execution (simulate edits before writing to disk), and 20 skills that encode correct multi-step operations like safe rename, blast-radius analysis, and end-to-end refactoring. Single Go binary, no runtime dependencies.50128MIT
- AlicenseNot gradedqualityAmaintenanceLocal-first code intelligence MCP server that enables coding agents to search code, inspect structure, read exact ranges, and explore Git history with explicit token budgets.23Apache 2.0
- AlicenseNot gradedqualityBmaintenanceProvides IDE-like coding capabilities for AI agents via MCP, enabling semantic code retrieval, symbol-level editing, refactoring, and navigation across many programming languages.MIT
- AlicenseNot gradedqualityBmaintenanceLocal-first code intelligence and safety layer for AI coding agents. MCP server exposes dependency graph, impact analysis, and AST-compressed repo context, backed by typed local memory, patch-scope safety gates, and git-independent transaction rollback.1MIT
- AlicenseNot gradedqualityAmaintenanceLocal-first MCP server that provides project context, verification gates, and structured tools for coding agents to discover knowledge, run diagnostics, and execute allowlisted commands within a repository.24 npmMIT
TDQS
Scored across 12 tools
Most tools occupy clearly distinct roles: create/read/update/delete file operations, declaration search, text search, batched edits, and validation. The only mild ambiguities are check vs. run_tests vs. run_command, and find vs. grep vs. read_range, but the descriptions do enough to steer an agent toward the right one.
Names are all lowercase and imperative, but the pattern is mixed: several are verb_noun (delete_file, read_range, replace_text, create_file, run_command, run_tests, declare_command) while others are bare verbs (find, insert, apply, check, grep). It is readable and predictable in tone, but not structurally consistent.
Twelve tools is a well-scoped set for a coding-assistant server covering file operations, search, batched edits, and validation. Each tool has a reason to exist, and none feel redundant or like filler.
Core file lifecycle, search, atomic edits, validation, and test reruns are covered, so agents can work through typical multi-step coding tasks without obvious dead ends. Minor gaps such as no explicit directory listing or rename/move operation are easily worked around with grep and read_range.