
(like Cline/Claude) to interact with your project files.
(like Cline/Claude) to interact with your project files.
A core toolkit MCP server providing essential, efficient tools for AI agents (like Cline/Claude) to interact with your project files.
This Node.js server implements the Model Context Protocol (MCP) to provide a foundational set of filesystem tools, operating safely within a defined project root directory. It focuses on common operations needed by agents, including partial file reads.
read_content tool supports reading specific
line ranges, saving tokens and processing time for large files.npx with minimal
configuration.npx)The simplest and recommended way to use this server is via npx, configured
directly in your MCP host environment (e.g., Roo/Cline's mcp_settings.json).
This ensures you always use the latest version from npm without needing local
installation or Docker.
Configure your MCP Host:
Modify your MCP host's settings (e.g., mcp_settings.json) to run the server
using npx.
{
"mcpServers": {
"nexus-tools": {
"command": "npx",
"args": [
"@shtse8/nexus-tools"
],
"name": "NexusTools (npx)"
}
}
}(Alternative) Using bunx:
If you prefer using Bun, you can use bunx instead:
{
"mcpServers": {
"nexus-tools": {
"command": "bunx",
"args": [
"@shtse8/nexus-tools"
],
"name": "NexusTools (bunx)"
}
}
}That's it! Restart your MCP Host environment (if necessary) for the settings to take effect. Your AI agent can now use the NexusTools. The server automatically determines the project root based on where the host environment runs it (typically your open project folder).
Provides an essential, batch-capable toolset:
list_files, stat_itemsread_content (supports partial reads via
start_line/end_line), write_content (incl. append)search_files (regex), replace_contentedit_file (basic string edits with indentation preservation,
diff preview, dry run - experimental)create_directoriesdelete_items (recursive)move_items, copy_itemsFor users who prefer containerization or need a specific environment.
1. Ensure Docker is running.
2. Configure your MCP Host:
Modify your MCP host's settings to run the Docker container. Crucially, you
must mount your project directory to /app inside the container.
{
"mcpServers": {
"nexus-tools": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/path/to/your/project:/app",
"shtse8/nexus-tools:latest"
],
"name": "NexusTools (Docker)"
}
}
}Explanation:
-v "/path/to/your/project:/app": Mounts your local project directory into
the container at /app. The server inside the container will treat /app as
its root. Remember to use the correct absolute path for your system.shtse8/nexus-tools:latest: Specifies the Docker image. Docker will pull it
if needed.3. Restart your MCP Host environment.
git clone <your-new-repo-url> (Replace with actual URL once created)cd nexus-tools && npm installnpm run build{
"mcpServers": {
"nexus-tools": {
"command": "node",
"args": ["/path/to/cloned/repo/nexus-tools/build/index.js"],
"name": "NexusTools (Local Build)"
}
}
}npm installnpm run build (compiles TypeScript to build/)npm run watch (optional, recompiles on save)This repository uses GitHub Actions (.github/workflows/publish.yml) to
automatically:
main.main.Requires NPM_TOKEN, DOCKERHUB_USERNAME, and DOCKERHUB_TOKEN secrets
configured in the GitHub repository settings.
Contributions are welcome! Please open an issue or submit a pull request.
Pick your client and paste the snippet. Each one is the same server, written the way that client expects it.
claude mcp add nexus-tools -- npx @shtse8/nexus-tools{
"mcpServers": {
"nexus-tools": {
"args": [
"@shtse8/nexus-tools"
],
"command": "npx"
}
}
}code --add-mcp '{"name":"nexus-tools","args":["@shtse8/nexus-tools"],"command":"npx"}'[mcp_servers.nexus-tools]
command = "npx"
args = ["@shtse8/nexus-tools"]Runs locally on your device. Your client starts the server itself, so nothing has to be hosted.
Paste this prompt into your agent. It reads this page and does the setup for you.
Read https://aiagentslisting.com/mcp/nexus-tools to learn what the "Nexus Tools" MCP server does and how to install it. Add it to my coding agent's MCP configuration as documented on that page, then confirm the server connects and list the tools it exposes.Agents can also browse this directory over MCP at https://aiagentslisting.com/api/mcp
This server runs locally, so we can't read its tool list over the web yet.
Maintain this server? Claiming proves you own the listing and earns the last 4 points.
Claim this listingPaste this line near the top of your repository's README. The badge always renders the current score.
[](https://aiagentslisting.com/mcp/nexus-tools)Nothing comparable is listed yet.
No tagged releases on record.
Connect to the AI Agents Listing MCP server at https://aiagentslisting.com/api/mcp using the HTTP transport and complete the sign-in when it asks. Then call the submit_review tool for the listing "nexus-tools" with a rating from 1 to 5 and a short note on what worked and what did not.No reviews yet
Be the first to share your experience with this tool.
One email a week. New agents, MCP servers and skills, and what is actually getting traction.