Skip to content

Commit 8a599bb

Browse files
authored
Merge pull request #15 from syncable-dev/feature/pub-creates
update ci pipeline and readme
2 parents 1444826 + aea0c41 commit 8a599bb

2 files changed

Lines changed: 21 additions & 4 deletions

File tree

.github/workflows/release-plz.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ jobs:
1313
permissions:
1414
contents: write
1515
steps:
16+
- name: Debug repository context
17+
run: |
18+
echo "Repo: $GITHUB_REPOSITORY"
19+
echo "Owner: ${{ github.repository_owner }}"
20+
echo "Ref: $GITHUB_REF"
21+
echo "Has Cargo token?"; test -n "$CARGO_REGISTRY_TOKEN" && echo "✔︎" || echo "✘"
22+
1623
- name: Checkout repository
1724
uses: actions/checkout@v4
1825
with:
@@ -39,6 +46,13 @@ jobs:
3946
group: release-plz-${{ github.ref }}
4047
cancel-in-progress: false
4148
steps:
49+
- name: Debug repository context
50+
run: |
51+
echo "Repo: $GITHUB_REPOSITORY"
52+
echo "Owner: ${{ github.repository_owner }}"
53+
echo "Ref: $GITHUB_REF"
54+
echo "Has Cargo token?"; test -n "$CARGO_REGISTRY_TOKEN" && echo "✔︎" || echo "✘"
55+
4256
- name: Checkout repository
4357
uses: actions/checkout@v4
4458
with:

rust-mcp-server-syncable-cli/README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# mcp-rust-server
22

3-
[![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)
4-
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge)](LICENSE)
5-
63
High-performance **Model Context Protocol** (MCP) server for code analysis, security scanning, and project insights—written in Rust 🦀.
74

85
---
96

7+
## Related Project
8+
9+
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.
10+
11+
---
12+
1013
## Table of Contents
1114

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

3538
## Installation
3639

37-
mcp-rust-server is published on [crates.io]. You need a recent Rust toolchain (1.70+ recommended).
40+
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.
3841

3942
### CLI Binaries
4043

0 commit comments

Comments
 (0)