docs(readme): add oracle_reindex to MCP tool list (5 of 5)#43
Merged
Conversation
src/mcp-server.ts:138 exports `oracle_reindex` as the fifth MCP tool, but the README listed only the four read-side tools (oracle_search, oracle_query, oracle_expand, oracle_list_repos) in three places. Updates: - README:45 adds oracle_reindex to the in-line tool list and gives it a one-sentence gloss (incremental on-demand reindex; use after merging code you want the oracle to see immediately). - README:80 "the four tools" -> "the five tools" in the docs/mcp.md pointer row. - README:108 adds oracle_reindex to the agent-mode tool slash list. docs/mcp.md already documents oracle_reindex in detail (line 35+47), so this PR only realigns the README headline counts. Closes: agent-tasks README drift audit 2026-05-25 (oracle_reindex MCP tool undocumented). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
src/mcp-server.ts:138exportsoracle_reindexas the fifth MCP tool, but the README only listed the four read-side tools (oracle_search,oracle_query,oracle_expand,oracle_list_repos) in three places. This PR realigns the headline tool count and givesoracle_reindexa one-sentence gloss.Closes: agent-tasks README drift audit 2026-05-25 (oracle_reindex MCP tool undocumented).
Changes
README.md:45addsoracle_reindexto the in-line tool list and one sentence describing what it does (incremental on-demand reindex, use after merging code you want the oracle to see immediately).README.md:80"the four tools" -> "the five tools" in the docs/mcp.md pointer row.README.md:108addsoracle_reindexto the agent-mode tool slash list.Reviewer notes (subagent, rigorous)
server.tool(...)definitions insrc/mcp-server.ts(lines 42, 61, 88, 116, 138).src/mcp-server.ts:140.docs/mcp.mdalready documentsoracle_reindex(line 35 + usage example at line 47), no follow-up needed there.grep -niE 'four tools|four MCP|4 tools'clean in README and docs.Test plan
grep '^server\.tool(' src/mcp-server.ts | wc -lreturns 5grep -niE 'four tools|four MCP|4 tools' README.md docs/mcp.mdreturns no hits