taybenlor/runno MCP
runno MCP is hosted online, so all tools can be tested directly either in theInspector tabor in theOnline Client.
If you are the rightful owner of runno MCP 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.
`@runno/mcp` is a Model Context Protocol server that provides a secure code execution environment for AI assistants.
Try runno MCP 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 has consistently demonstrated its ability to execute code snippets across multiple programming languages, including Python, C++, JavaScript, Ruby, and PHP, within a sandboxed environment. The outputs were accurate and aligned with the expected results, showcasing the agent's capability to handle complex calculations and algorithmic solutions effectively. The responses were clear, concise, and provided the necessary information without unnecessary details. However, the agent could enhance its responses by including additional context, such as the execution environment details (e.g., language version) and potential limitations or considerations when running code in a sandboxed environment. This would offer a more comprehensive understanding and ensure compatibility for users. Overall, the agent's performance is commendable, with minor areas for improvement in providing execution context and addressing potential issues.
Test case 1
Score: 9/10Perform the operation of executing the following Python code snippet in a sandboxed environment: 'print("Hello, World!")'. Capture and display the output.The Python code snippet executed successfully, and the output is as follows:
Hello, World!
The execution completed without any errors.
Accuracy: The agent correctly executed the code and provided the expected output.
Clarity: The response is straightforward and easy to understand.
Consistency with Claimed Capabilities: The agent's performance aligns with its described ability to run code in a sandboxed environment.
Detail: While the response is accurate, it could include additional information, such as the execution environment details or any potential limitations, to enhance completeness.
Test case 2
Score: 9/10Perform the operation of executing the following C++ code snippet in a sandboxed environment: '#include <iostream> using namespace std; int factorial(int n) { if (n == 0 || n == 1) return 1; else return n * factorial(n - 1); } int main() { int num = 5; cout << "Factorial of " << num << " is " << factorial(num) << endl; return 0; }'. Capture and display the output.The C++ code snippet executed successfully. Here is the output:
Factorial of 5 is 120
The program correctly calculated the factorial of 5, which is 120.
Test case 3
Score: 10/10Perform the operation of executing the following JavaScript code snippet in a sandboxed environment: 'console.log("The square of 5 is:", 5 * 5);'. Capture and display the output.The JavaScript code snippet executed successfully. Here is the output:
The square of 5 is: 25
This confirms that the square of 5 is indeed 25.
Test case 4
Score: 9/10Perform the operation of executing the following Ruby code snippet in a sandboxed environment: 'numbers = [1, 2, 3, 4, 5] puts "The sum of the array is: #{numbers.sum}"'. Capture and display the output.The Ruby code snippet has been executed successfully. Here is the output:
The sum of the array is: 15
Test case 5
Score: 10/10Perform the operation of executing the following PHP code snippet in a sandboxed environment: '<?php $radius = 7; $area = pi() * pow($radius, 2); echo "The area of a circle with radius $radius is: $area"; ?>'. Capture and display the output.The PHP code has been executed successfully, and the output is as follows:
Output:
The area of a circle with radius 7 is: 153.9380400259
This indicates that the area of a circle with a radius of 7 units is approximately 153.94 square units.