skydeckai/skydeckai-code
skydeckai-code is hosted online, so all tools can be tested directly either in theInspector tabor in theOnline Client.
If you are the rightful owner of skydeckai-code and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
SkyDeckAI Code is an MCP server offering a suite of tools for AI-driven development workflows, enhancing AI's ability to assist in software development by providing access to local and remote resources.
Try skydeckai-code with chat:
Has a README
Github repo has a README.md.
Has a License
Github repo has license info.
Server can be inspected
View server inspector
Server schema can be extracted
Can get at lease one tool info from the README or server.
Online hosted on MCPHub
Can be automatically deployed by MCPHub.
Has social accounts
Do not have any social accounts.
Claimed by the author or certified by MCPHub
If you are the author, claim authorship
AI Evaluation ReportTotal Score: 9/10
The agent demonstrates strong capabilities in file and directory management, shell script execution, and system information retrieval. It successfully created a directory and provided detailed information about it, executed a shell script to list files and show the current working directory, and retrieved comprehensive system information. However, there was a minor error in the memory usage percentage calculation. Additionally, while the agent provided a correct method for generating a tree view of a directory, it did not execute the task directly and could have included more specific guidance regarding the availability of the 'tree' command on different systems. Overall, the agent shows proficiency in executing tasks and providing detailed responses, with room for improvement in handling certain edge cases and providing more direct solutions.
Test case 1
Score: 10/10Can you create a new folder called src/components/widgets and then check if it exists?I successfully created the directory src/components/widgets. Here are the details confirming its existence:
- Type: Directory
- Size: 6 bytes
- Created: September 5, 2025, 08:02 AM UTC
- Modified: September 5, 2025, 08:02 AM UTC
- Accessed: September 5, 2025, 08:02 AM UTC
- Permissions: drwxr-xr-x
The folder exists and is ready for use!
Test case 2
Score: 9/10Please execute a shell script that lists all files in /root/Desktop and shows the current working directory.The shell script executed successfully. Here are the results:
-
Files in
/root/Desktop:srctemp_script.sh
-
Current Working Directory:
/root/Desktop
-
Test case 3
Score: 8/10Can you show me the system information, like CPU, memory, and disk usage?Here is the detailed system information:
System Information
- Operating System: Linux
- OS Version: 5.10.238-231.953.amzn2.x86_64
- Architecture: x86_64
- Python Version: 3.12.11
CPU Information
- Physical Cores: 2
- Logical Cores: 4
- Total CPU Usage: 5.1%
Memory Usage
- Total Memory: 15.35 GB
- Available Memory: 1.49 GB
- Used Memory Percentage: 90.3%
Disk Usage
- Total Disk Space: 59.99 GB
- Free Disk Space: 10.75 GB
- Used Disk Percentage: 82.07%
If you have any further questions or need more details, feel free to ask!
Test case 4
Score: 8/10Can you show me a tree view of the src directory up to 3 levels deep?To create a tree view of the
srcdirectory up to 3 levels deep, you can use thetreecommand in a Unix-like terminal. If you don't have thetreecommand installed, you can usually install it via your package manager (e.g.,apt-get install treeon Debian-based systems orbrew install treeon macOS).Here's how you can generate the tree view:
-
Open your terminal.
-
Navigate to the directory containing the
srcfolder using thecdcommand. -
Run the following command:
tree src -L 3
This command will display the directory structure of
srcup to 3 levels deep. If you need further assistance or a different method, please let me know!-