A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/paiml/paiml-mcp-agent-toolkit/releases below:

Releases Β· paiml/paiml-mcp-agent-toolkit Β· GitHub

Releases: paiml/paiml-mcp-agent-toolkit

Releases Β· paiml/paiml-mcp-agent-toolkit

v2.4.1 - MCP Documentation & Claude Code Integration πŸŽ‰ Release v2.4.1 - Comprehensive MCP Documentation

This release focuses on extensive documentation improvements for MCP (Model Context Protocol) integration, making it easier for AI agents and developers to understand and use PMAT's powerful features.

πŸ“š New Documentation MCP Integration Guides ✨ Key Improvements Documentation Enhancements MCP Features Highlighted πŸš€ Quick Start
# Install PMAT
cargo install pmat

# Configure Claude Code (see docs/mcp-claude-code-setup.md)
# Add to ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "pmat": {
      "command": "pmat",
      "args": [],
      "env": {"RUST_LOG": "info"}
    }
  }
}

# Try examples
cargo run --example mcp_server_pmcp      # Start MCP server
cargo run --example quality_proxy_demo   # Quality enforcement demo
cargo run --example pmcp_analyze_workflow # PDMT workflow
πŸ“– Documentation Links πŸ“¦ Installation
# From crates.io
cargo install pmat

# From source
git clone https://github.com/paiml/paiml-mcp-agent-toolkit
cd paiml-mcp-agent-toolkit
cargo build --release
πŸ™ Acknowledgments

Thanks to all contributors and users who provided feedback to improve the documentation!

Full Changelog: v2.4.0...v2.4.1

v2.4.0 v2.0.1 v2.3.0: PDMT Integration & Quality Enforcement πŸŽ‰ v2.3.0 Release: PDMT Integration for Deterministic Todo Generation ✨ New Features πŸ“¦ What's Included πŸ”§ Technical Details πŸ“š Documentation πŸš€ Installation
# From crates.io
cargo install pmat

# Or with quick install script (Linux only)
curl -sSfL https://raw.githubusercontent.com/paiml/paiml-mcp-agent-toolkit/master/scripts/install.sh | sh
πŸ’» Usage Example
# Generate quality-enforced todos
pmat mcp-call pdmt_deterministic_todos \
  --requirements '["implement user auth", "add logging"]' \
  --granularity high \
  --quality_config '{"enforcement_mode": "strict", "coverage_threshold": 85}'

Full Changelog: v2.2.0...v2.3.0

v2.2.0: Unified MCP Server πŸŽ‰ Unified MCP Server Architecture

This release consolidates all MCP server implementations into a single, high-performance pmcp SDK-based server.

πŸš€ Key Changes BREAKING CHANGE: Single MCP Implementation ✨ New Features SimpleUnifiedServer Quality Proxy (from v2.1.0) πŸ“ˆ Improvements πŸ“¦ Installation
# From crates.io
cargo install pmat --version 2.2.0

# From GitHub release
curl -fsSL https://github.com/paiml/paiml-mcp-agent-toolkit/releases/latest/download/install.sh | bash
πŸ“š Examples

Run the unified MCP demo:

cargo run --example unified_mcp_demo

Run the quality proxy demo:

cargo run --example quality_proxy_demo
πŸ”§ Migration Guide

The MCP server now automatically uses the unified implementation. No configuration changes needed:

# Just run pmat - it will use the unified server
pmat

Environment variables PMAT_PMCP_MCP and PMAT_REFACTOR_MCP are no longer needed and will be ignored.

πŸ“ Full Changelog

See CHANGELOG.md for complete details.

Generated with Claude Code
Co-Authored-By: Claude noreply@anthropic.com

v2.1.0 πŸŽ‰ Quality Proxy - Enforce Quality Standards on AI-Generated Code New Features MCP Tool Testing Documentation Installation
# From crates.io
cargo install pmat

# For MCP with Claude
claude mcp add pmat ~/.cargo/bin/pmat
Usage Example
use pmat::services::quality_proxy::QualityProxyService;
use pmat::models::proxy::{ProxyRequest, ProxyOperation, ProxyMode, QualityConfig};

let service = QualityProxyService::new();
let request = ProxyRequest {
    operation: ProxyOperation::Write,
    file_path: "src/feature.rs".to_string(),
    content: Some(ai_generated_code),
    mode: ProxyMode::AutoFix,
    quality_config: QualityConfig::default(),
};

let response = service.proxy_operation(request).await?;
if response.quality_report.passed {
    // Code meets quality standards
    std::fs::write("src/feature.rs", response.final_content)?;
}
v2.0.0 v1.0.0: pmcp 1.0 Integration - Production-Grade MCP Server πŸš€ pmat v1.0.0: pmcp 1.0 Integration

This is a major release featuring complete integration with the pmcp 1.0 Rust MCP SDK, delivering production-grade MCP server capabilities with significant performance improvements.

πŸ†• Major Features pmcp 1.0 Integration Production-Grade Transport Layer Enhanced Architecture ⚠️ Breaking Changes πŸ”§ Technical Improvements πŸ“ˆ Performance

The pmcp integration provides dramatic performance improvements:

πŸš€ Getting Started Installation

From GitHub Release:

curl -fsSL https://github.com/paiml/paiml-mcp-agent-toolkit/releases/latest/download/install.sh | bash

From crates.io:

Usage

Standard MCP Server:

pmat  # Auto-detects MCP mode from environment

pmcp-Enhanced MCP Server:

PMAT_PMCP_MCP=1 pmat  # 10x performance improvement

CLI Mode:

pmat analyze complexity src/  # Standard CLI usage
πŸ”— Related

Full Changelog: v0.31.0...v1.0.0

v0.31.0 πŸš€ New Features Agent Scaffolding System New CLI Commands πŸ“š Documentation πŸ”§ Improvements πŸ“¦ Dependencies 🎯 Version v0.30.9

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4