BasalGanglia's picture
πŸ† Multi-Track Hackathon Submission
1f2d50a verified

A newer version of the Gradio SDK is available: 6.2.0

Upgrade
metadata
title: Developer Guide
description: Comprehensive guide for KGraph-MCP contributors and advanced users

Developer Guide

Welcome to the KGraph-MCP Developer Guide! This section contains detailed information for contributors, advanced users, and developers who want to extend or modify KGraph-MCP.

πŸ› οΈ Development Sections

πŸ—οΈ Development Workflow

For contributors and maintainers, follow this development workflow:

  1. Setup - Configure your development environment
  2. Code Style - Follow project coding standards
  3. Testing - Write and run comprehensive tests
  4. Contributing - Submit your contributions

πŸ”§ Quick Development Commands

# Setup development environment
just setup

# Run in development mode  
just dev

# Run all quality checks
just check

# Run tests with coverage
just test-cov

# Run pre-commit checks
just pre-commit

πŸ“‹ Development Standards

  • Python 3.11.8+ - Required Python version
  • Test-Driven Development - Write tests first
  • Type Safety - Full type annotations with mypy
  • Code Quality - Black formatting + Ruff linting
  • Documentation - Comprehensive docstrings and guides

πŸ”— Related Resources