Skip to content

Commit 479eebd

Browse files
committed
docs: add badges and remove nightly from CI test matrix
Add comprehensive badges to README.md: - CI status badge (GitHub Actions workflow) - Code coverage badge (Codecov) - MSRV badge (Minimum Supported Rust Version 1.88) - License badge (MIT OR Apache-2.0) - Rust version badge (stable) Remove nightly from CI test matrix: - Test only on stable (all platforms) and beta (Linux only) - Nightly toolchain still used for rustfmt formatting checks - Remove continue-on-error directive (no longer needed) All 352 tests passing on stable Rust.
1 parent 299eb78 commit 479eebd

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,6 @@ jobs:
101101
# Test on beta channel on Linux only
102102
- os: ubuntu-latest
103103
rust: beta
104-
# Test on nightly (allow to fail)
105-
- os: ubuntu-latest
106-
rust: nightly
107-
continue-on-error: ${{ matrix.rust == 'nightly' }}
108104

109105
steps:
110106
- uses: actions/checkout@v5

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
**Secure WebAssembly-based code execution for Model Context Protocol (MCP) with 90-98% token savings.**
44

5+
[![CI](https://github.com/bug-ops/mcp-execution/actions/workflows/ci.yml/badge.svg)](https://github.com/bug-ops/mcp-execution/actions/workflows/ci.yml)
6+
[![codecov](https://codecov.io/gh/bug-ops/mcp-execution/branch/master/graph/badge.svg)](https://codecov.io/gh/bug-ops/mcp-execution)
7+
[![MSRV](https://img.shields.io/badge/MSRV-1.88-blue.svg)](https://blog.rust-lang.org/2025/01/09/Rust-1.88.0.html)
8+
[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](LICENSE-MIT)
9+
[![Rust](https://img.shields.io/badge/rust-stable-orange.svg)](https://www.rust-lang.org)
10+
511
## Overview
612

713
MCP Code Execution implements the Code Execution pattern for MCP, enabling AI agents to discover and execute MCP tools through progressive loading rather than sending full tool definitions in every prompt. This achieves dramatic token savings while maintaining full compatibility with existing MCP servers.

0 commit comments

Comments
 (0)