About Aidevtools
Aidevtools is an MCP server published by eliezedeck in the Developer Tools category: a collection of tools designed to enhance AI-powered software development workflows, featuring Sidekick MCP server for process management and notifications. It has been installed 0 times through Conduid.
The repository has 1 stars and 0 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx aidevtoolsThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Aidevtools
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
Releases
README
AIDevTools
MCP servers and tools for AI-powered development.
Components
🚀 Sidekick
Process management, agent communication, and notification MCP server for AI agents.
Features:
- Spawn and manage long-running processes
- Real-time output streaming with ring buffers
- Interactive process control (stdin/stdout/stderr)
- Audio notifications (macOS)
- Agent Q&A system for specialist communication
- TUI mode for visual process monitoring
- Cross-platform: Linux, macOS, Windows
Install:
curl -sSL https://raw.githubusercontent.com/eliezedeck/AIDevTools/main/sidekick/install.sh | bash
Usage:
# TUI mode (default)
sidekick
# Stdio mode for Claude Desktop
sidekick --sse=false
# SSE server mode with custom port
sidekick --port 6060
# Add to Claude Desktop (stdio mode)
claude mcp add sidekick ~/.local/bin/sidekick --args "--sse=false"
🌉 stdio2sse
Proxy between stdio-based MCP clients and SSE-based MCP servers.
Features:
- Connect Claude Desktop to SSE-only MCP servers
- Automatic tool discovery and proxying
- Transparent request/response forwarding
- Async architecture for reliable communication
Install:
curl -sSL https://raw.githubusercontent.com/eliezedeck/AIDevTools/main/stdio2sse/install.sh | bash
Usage:
# Bridge to an SSE server
stdio2sse --sse-url http://localhost:5050/sse
# Add to Claude Desktop
claude mcp add my-sse-server ~/.local/bin/stdio2sse --args "--sse-url" "http://localhost:5050/sse"
Requirements
- Go 1.23+ (for building from source)
- Claude Desktop or other MCP-compatible clients
Building from Source
git clone https://github.com/eliezedeck/AIDevTools.git
cd AIDevTools
# Build sidekick
cd sidekick && go build
# Build stdiobridge
cd ../stdiobridge && go build
API Reference
Sidekick Tools
Process Management:
spawn_process- Start a new process with options (delay, buffer size, environment)spawn_multiple_processes- Launch multiple processes sequentiallyget_partial_process_output- Get incremental output (tail -f functionality)get_full_process_output- Get all output in memorysend_process_input- Send stdin input to a running processlist_processes- List all tracked processes and their statuskill_process- Terminate a tracked processget_process_status- Get detailed process information
Agent Communication:
get_next_question- Register as a specialist and wait for questionsanswer_question- Provide an answer to a received questionask_specialist- Ask a question to a specialist agentget_answer- Retrieve answer for a previously asked questionlist_specialists- List all available specialist agents
Notifications (macOS only for now):
notifications_speak- Play sound and speak text (max 50 words)
License
MIT License - see LICENSE file for details.
README mirrored from the source repository 23 hours ago. The original is authoritative.