Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
permissions:
contents: write
steps:
- name: Debug repository context
run: |
echo "Repo: $GITHUB_REPOSITORY"
echo "Owner: ${{ github.repository_owner }}"
echo "Ref: $GITHUB_REF"
echo "Has Cargo token?"; test -n "$CARGO_REGISTRY_TOKEN" && echo "✔︎" || echo "✘"

- name: Checkout repository
uses: actions/checkout@v4
with:
Expand All @@ -39,6 +46,13 @@ jobs:
group: release-plz-${{ github.ref }}
cancel-in-progress: false
steps:
- name: Debug repository context
run: |
echo "Repo: $GITHUB_REPOSITORY"
echo "Owner: ${{ github.repository_owner }}"
echo "Ref: $GITHUB_REF"
echo "Has Cargo token?"; test -n "$CARGO_REGISTRY_TOKEN" && echo "✔︎" || echo "✘"

- name: Checkout repository
uses: actions/checkout@v4
with:
Expand Down
11 changes: 7 additions & 4 deletions rust-mcp-server-syncable-cli/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# mcp-rust-server

[![Crates.io](https://img.shields.io/crates/v/mcp-rust-server.svg?style=for-the-badge)](https://crates.io/crates/rust-mcp-server-syncable-cli)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge)](LICENSE)

High-performance **Model Context Protocol** (MCP) server for code analysis, security scanning, and project insights—written in Rust 🦀.

---

## Related Project

This MCP server exposes the capabilities of the [`syncable-cli`](https://crates.io/crates/syncable-cli) tool to AI agents. While `syncable-cli` is a standalone CLI tool for interacting with Syncable workspaces, this server acts as a bridge, allowing AI agents and other clients to access those CLI features programmatically via the Model Context Protocol (MCP). Both projects are closely related and complement each other.

---

## Table of Contents

* [Features](#features)
Expand Down Expand Up @@ -34,7 +37,7 @@ High-performance **Model Context Protocol** (MCP) server for code analysis, secu

## Installation

mcp-rust-server is published on [crates.io]. You need a recent Rust toolchain (1.70+ recommended).
rust-mcp-server-syncable-cli is published on [crates.io]. You need a recent Rust toolchain (1.70+ recommended). It works as a MCP server for AI agents where you can use langgraph framework or similar to connect to this MCP server for code scanning.

### CLI Binaries

Expand Down