codaveri-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@codaveri-mcp-serverexecute python code that prints 'Hello, World!'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Codaveri MCP Server
This is a Model-Context-Protocol (MCP) server for the Codaveri API, allowing you to execute code in various languages.
Installation
Clone the repository:
git clone https://github.com/satviksinha/codaveri-mcp-server.gitInstall the dependencies:
npm install
Related MCP server: mcp-server-code-runner
Configuration
Create a
.env.development.localfile in the root of the project.Add your Codaveri API key to the file:
API_KEY=<your_codaveri_api_key> CODAVERI_API_BASE_URL=<codaveri-url>
Using this MCP server from any repo
When you run the codaveri MCP server from another repository (your client repo or any working directory), it looks for environment variables in a .env.development.local file in the current working directory.
Create a
.env.development.localfile in that repo as well, with the same variables:
API_KEY=your_codaveri_api_key
CODAVERI_API_BASE_URL=https://staging.codaveri.comNotes:
The file must be placed in the repo where you execute the
codavericommand (because dotenv loads from the current working directory).Alternatively, you can export these variables in your shell environment instead of using the file.
Building the Server
To build the server, run the following command:
npm run buildThis will compile the TypeScript code into JavaScript and place it in the build directory.
Running the Server
You can run the server locally using npm link:
Link the package to make the
codavericommand available globally:npm linkNow you can run the server by simply typing
codaveriin your terminal.
Client Integration
To use this server in an MCP client, you need to configure the client to connect to the codaveri command.
Here is an example of how you might configure your MCP client:
{
"mcpServers": {
"codaveri": {
"command": "codaveri"
}
}
}executeCode Tool
This server provides a single tool, executeCode.
Description
Executes a given code snippet in a specified language and returns the output.
Parameters
code(string, required): The code to be executed.language(string, required): The programming language of the code. Supported languages are:pythonjavascriptjavaccpptypescriptgorustcsharp
Example Usage in an MCP Client
executeCode(code="print('Hello, world!')", language="python")Example Output
The tool will return the standard output of the executed code.
{
"content": [
{
"type": "text",
"text": "Hello, world!\\n"
}
]
}This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/satviksinha/codaveri-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server