NeuroMCP

NeuroMCP (Neural Model Context Protocol) is a collection of specialized microservices that enable AI agents to interact with various backend systems through a standardized API.

GitHubスター

0

ユーザー評価

未評価

お気に入り

0

閲覧数

4

フォーク

0

イシュー

3

README
NeuroMCP

NeuroMCP (Neural Model Context Protocol) is a collection of specialized microservices that enable AI agents to interact with various backend systems through a standardized API. Each service follows the Model Context Protocol (MCP) specification to provide a consistent interface for AI agents.

Services

The project currently includes the following services:

Documentation

Complete documentation for NeuroMCP is available in the docs directory:

Quick Start
NeuroMCP.AzureDevOps
# Pull the image
docker pull ahmedkhalil777/neuromcp-azuredevops:latest

# Run with default settings
docker run -p 5300:5300 ahmedkhalil777/neuromcp-azuredevops
NeuroMCP.SqlServer
# Pull the image
docker pull ahmedkhalil777/neuromcp-sqlserver:latest

# Run with default settings
docker run -p 5200:5200 ahmedkhalil777/neuromcp-sqlserver

For more detailed instructions, see the Docker Installation Guide.

Docker Compose Example

For running multiple services together:

version: '3.8'

services:
  neuromcp-azuredevops:
    image: ahmedkhalil777/neuromcp-azuredevops:latest
    ports:
      - "5300:5300"
    volumes:
      - ./azuredevops-config:/app/config
    restart: unless-stopped

  neuromcp-sqlserver:
    image: ahmedkhalil777/neuromcp-sqlserver:latest
    ports:
      - "5200:5200"
    volumes:
      - ./sqlserver-config:/app/config
    restart: unless-stopped

For more advanced configurations, see the Docker Compose Guide.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

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