Cover image
Try Now
2025-04-02

🚀MCP服务器:使AIS充当自动开发人员的平台。从想法概念到最终测试,可以自动化整个软件开发过程。 #autonomousdev #ai #innovation #softwareEngineering #futureofdev

3 years

Works with Finder

1

Github Watches

0

Github Forks

0

Github Stars

🚀 MCP Server for Autonomous Development Agents

This MCP (Message Control Protocol) server is a platform that enables different AIs (like Claude) to act as autonomous development agents, providing capabilities to automate the entire software development process, from idea conception to final testing.

🎯 Main Objective

The main objective of this server is to enable AIs to develop software autonomously, performing tasks such as:

  • Project structure creation
  • Requirements file generation
  • Code development
  • Test implementation
  • Version control management
  • And any other software development related tasks

✨ Main Features

The server provides capabilities for:

  • Reading and writing files
  • Making network requests
  • Connecting and querying MySQL databases
  • Executing system commands
  • Managing Git repositories
  • And more...

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

📋 Requirements

  • Java 17 or higher
  • Maven 3.6 or higher
  • MySQL Server (optional, only if database functionality is planned)
  • Git (for version control functionalities)

📁 Project Structure

src/main/java/com/claude/mcp/
├── MCPServer.java           # Main server orchestrating all services
├── model/
│   └── Message.java        # Message model for communication
└── service/
    ├── FileService.java    # Service for file operations
    ├── DatabaseService.java # Service for database operations
    ├── NetworkService.java  # Service for network operations
    ├── GitService.java      # Service for Git operations
    └── CommandService.java  # Service for system command execution

📝 Message Format

Messages are exchanged in JSON format with the following structure:

{
    "type": "MESSAGE_TYPE",
    "content": "optional content",
    "parameters": {
        // Specific parameters according to message type
    }
}

📨 Message Types

  1. FILE_READ

    {
        "type": "FILE_READ",
        "parameters": {
            "filePath": "/path/to/file.txt"
        }
    }
    
  2. FILE_WRITE

    {
        "type": "FILE_WRITE",
        "parameters": {
            "filePath": "/path/to/file.txt",
            "content": "content to write"
        }
    }
    
  3. NETWORK_REQUEST

    {
        "type": "NETWORK_REQUEST",
        "parameters": {
            "url": "https://api.example.com",
            "method": "GET",
            "body": "{}"  // Optional, only for POST
        }
    }
    
  4. DATABASE_QUERY

    {
        "type": "DATABASE_QUERY",
        "parameters": {
            "connectionId": "conn1",
            "query": "SELECT * FROM table WHERE id = ?",
            "queryParams": [1]
        }
    }
    
  5. GIT_COMMAND

    {
        "type": "GIT_COMMAND",
        "parameters": {
            "command": "commit",
            "args": ["-m", "commit message"]
        }
    }
    
  6. SYSTEM_COMMAND

    {
        "type": "SYSTEM_COMMAND",
        "parameters": {
            "command": "npm",
            "args": ["install"]
        }
    }
    

🚀 Usage

  1. Build the project:

    mvn clean package
    
  2. Run the server:

    java -jar target/servidor-mcp-1.0-SNAPSHOT.jar
    
  3. Connect from any AI compatible with the MCP protocol.

🔒 Security

  • The server should run with minimum necessary permissions
  • Authentication is recommended before using in production
  • Database credentials should be handled securely
  • System command limits and validations must be implemented
  • Using an isolated environment for testing is recommended

📊 Logging

The server uses SLF4J with Logback for event logging. Logs can be configured in src/main/resources/logback.xml.

🤝 Contributing

Contributions are welcome. Please ensure to:

  1. Follow the project's style guidelines
  2. Include tests for new functionality
  3. Update documentation as needed
  4. Create an issue before starting major work

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Alexandru Strujac
  • Efficient thumbnail creator for YouTube videos

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Lists Tailwind CSS classes in monospaced font

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • https://appia.in
  • Siri Shortcut Finder – your go-to place for discovering amazing Siri Shortcuts with ease

  • Daren White
  • A supportive coach for mastering all Spanish tenses.

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • J. DE HARO OLLE
  • Especialista en juegos de palabras en varios idiomas.

  • apappascs
  • 发现市场上最全面,最新的MCP服务器集合。该存储库充当集中式枢纽,提供了广泛的开源和专有MCP服务器目录,并提供功能,文档链接和贡献者。

  • ShrimpingIt
  • MCP系列GPIO Expander的基于Micropython I2C的操作,源自ADAFRUIT_MCP230XX

  • jae-jae
  • MCP服务器使用剧作《无头浏览器》获取网页内容。

  • HiveNexus
  • 一个适用于中小型团队的AI聊天机器人,支持DeepSeek,Open AI,Claude和Gemini等车型。 专为中小团队设计的ai聊天应用,支持deepSeek,打开ai,claude,双子座等模型。

  • ravitemer
  • 一个功能强大的Neovim插件,用于管理MCP(模型上下文协议)服务器

  • patruff
  • Ollama和MCP服务器之间的桥梁,使本地LLMS可以使用模型上下文协议工具

    Reviews

    4 (1)
    Avatar
    user_TSkmiz6j
    2025-04-16

    I've been using autonomous-dev-agent by Bufigol, and it's been a game-changer for my development workflow. The autonomy and efficiency it brings are unparalleled. Highly recommend it to any developer looking to streamline their tasks! Check it out on GitHub!