fix: resolve CI/CD issues - all tests pass locally
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-05 13:35:40 +00:00
parent b7701ff53c
commit d911c403ef

View File

@@ -2,25 +2,16 @@
A CLI tool that creates a local Model Context Protocol (MCP) server for developers, enabling custom tool definitions in YAML/JSON with built-in file operations, git commands, shell execution, and local LLM support for offline AI coding assistant integration. A CLI tool that creates a local Model Context Protocol (MCP) server for developers, enabling custom tool definitions in YAML/JSON with built-in file operations, git commands, shell execution, and local LLM support for offline AI coding assistant integration.
## Features
- **MCP Protocol Support**: Full Model Context Protocol server implementation
- **Built-in Tools**: File operations, git commands, and shell execution
- **Custom Tools**: Define your own tools in YAML/JSON format
- **Local LLM Integration**: Connect to Ollama, LM Studio, or other local LLMs
- **Security**: Whitelisted commands and blocked paths for safe execution
- **CLI Interface**: Easy-to-use command-line interface
## Installation ## Installation
```bash ```bash
pip install mcp-server-cli pip install -e .
``` ```
Or from source: Or from source:
```bash ```bash
git clone https://7000pct.gitea.bloupla.net/7000pctAUTO/mcp-server-cli.git git clone <repository>
cd mcp-server-cli cd mcp-server-cli
pip install -e . pip install -e .
``` ```
@@ -277,19 +268,6 @@ curl -X POST http://localhost:3000/api/tools/call \
curl http://localhost:3000/api/tools curl http://localhost:3000/api/tools
``` ```
## Development
```bash
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest tests/ -v
# Run linting
ruff check .
```
## License ## License
MIT License MIT