MCP.so
Sign In

AutoDev MCP Examples

@unit-mesh

About AutoDev MCP Examples

MCP Examples for AutoDev

Basic information

Category

Other

Runtime

java

Transports

stdio

Publisher

unit-mesh

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/Volumes/source/ai/autocrud"
      ],
      "disabled": true
    },
    "greeting": {
      "command": "node",
      "args": [
        "/Users/phodal/source/ai/autodev-mcp-test/javascript-greeting"
      ]
    },
    "echo": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/Users/phodal/source/ai/autodev-mcp-test/python-sqlite3/",
        "--with",
        "mcp",
        "mcp",
        "run",
        "/Users/phodal/source/ai/autodev-mcp-test/python-sqlite3/server.py"
      ]
    },
    "weather": {
      "command": "java",
      "args": [
        "-jar",
        "/Volumes/source/ai/autodev-mcp-test/java-mcp/target/mcp-0.0.1-SNAPSHOT.jar"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is AutoDev MCP Examples?

AutoDev MCP Examples is a collection of Model Context Protocol (MCP) server configurations and code snippets across multiple programming languages. It demonstrates how to set up and run MCP servers using Node.js, Python, Java, and JavaScript, intended for developers learning or prototyping with MCP.

How to use AutoDev MCP Examples?

Configure your mcpServers in a JSON file by copying the provided examples, adjusting the command paths and arguments to match your local environment. For instance, run npx -y @modelcontextprotocol/server-filesystem or node /path/to/greeting.js as shown in the configuration. The README does not provide step‑by‑step installation instructions beyond these configurations.

Key features of AutoDev MCP Examples

  • Includes ready‑to‑use MCP server definitions for filesystem, greeting, echo, and weather.
  • Supports multiple runtimes: Node.js, Python (uv), Java, and JavaScript.
  • Provides SDK and resource links for Java, Python, JavaScript, and Kotlin.
  • Demonstrates a JSON‑RPC initialization message for testing connectivity.
  • Configurations can be disabled (e.g., "disabled": true for the filesystem server).

Use cases of AutoDev MCP Examples

  • Learning how to configure and run MCP servers in different programming languages.
  • Testing MCP server communication with a local tool or client using the provided JSON‑RPC sample.
  • Prototyping custom MCP servers by modifying the example command and path definitions.
  • Exploring SDK documentation and resources linked for each supported language.

FAQ from AutoDev MCP Examples

What languages are supported?

The examples include Node.js, Python, Java, and JavaScript. Links to SDK resources are also provided for Kotlin.

What dependencies are required?

Node.js (via npx and node), Python (via uv), and Java (via java -jar) must be installed. The exact versions are not specified.

How do I run the echo server?

Use the uv command with the directory and script path provided in the configuration, e.g., uv run --directory /path/to/python-sqlite3/ --with mcp mcp run /path/to/server.py.

Is there any authentication or security mentioned?

No, the README does not discuss authentication, authorization, or any security measures for the MCP servers.

Where does the filesystem server operate?

The filesystem server is configured to operate on /Volumes/source/ai/autocrud (visible as the directory argument). It is disabled by default.

Comments

More Other MCP servers