Provides a comprehensive suite of tools for Salesforce development, including metadata deployment (Apex, LWC, Custom Objects), SOQL query execution, bulk data management via Bulk API 2.0, Apex testing and coverage analysis, and multi-org management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Salesforce MCP Serverrun a SOQL query to list the top 10 opportunities by amount"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π Salesforce MCP Server
The complete Model Context Protocol (MCP) server for Salesforce development Deploy metadata, run SOQL, manage multiple orgs, and automate everything - all through Claude Desktop.
Created by Sameer | Report Issues | Complete Guide
β¨ What is This?
Transform Claude Desktop into a powerful Salesforce IDE with 60 optimized tools for metadata management, testing, multi-org operations, and more. No manual API calls, no context switching - just natural language commands.
NEW v2.0: Tool consolidation reduces 106 tools β 57 tools (46% reduction) for better LLM performance!
NEW v2.1: Added comprehensive debugging tool - diagnose and fix any Salesforce defect!
NEW v2.2: Added analyze_field_usage - comprehensive field usage analysis across ALL metadata with CSV export!
NEW v2.3: API-only authentication - reliable username/password login for Claude Desktop!
Key Features
π API-Based Authentication - Reliable username/password login that works perfectly in Claude Desktop
π οΈ 60 Optimized Tools - Complete Salesforce API coverage with LLM-friendly design
π― Smart Infrastructure - Caching, connection pooling, pagination, and enhanced error handling
π Field Usage Analysis - Analyze where 500+ fields are used across ALL metadata with CSV export
π Intelligent Debugging - Diagnose and fix triggers, flows, validations, fields, permissions, and more
π Multi-Org Management - Work with multiple orgs simultaneously and compare metadata
π¦ Bulk Operations - Handle thousands of records with Bulk API 2.0
π§ͺ Apex Testing - Run tests, get coverage, debug with full logs
π Schema Analysis - Analyze dependencies, find unused fields, generate ERDs
π Health Monitoring - Check org limits, API usage, and system health
π¦ Production-Ready - Retry logic, input validation, structured logging
π― Quick Start
Prerequisites
β‘ Quick Authentication (Claude Desktop)
Recommended: Use username/password authentication (most reliable for MCP servers)
Step 1: Get domain from your org URL
Use salesforce_get_domain_from_url with: https://your-org.salesforce.com
Step 2: Login
Use salesforce_login_username_password with:
- username: your.email@company.com
- password: YourPassword
- security_token: [Get from Salesforce Settings β Reset Security Token]
- domain: [from step 1]
Step 3: Start using tools!
Use execute_soql_query to run: SELECT Id, Name FROM Account LIMIT 10π Complete Authentication Guide - Detailed instructions with examples
License Key Setup
Before running the server, you need a valid license key from MCP Admin.
Contact MCP Admin to get your
APP_ENCRYPTION_KEYandAPP_PASSWORD_ENCAdd to
.envfile:APP_ENCRYPTION_KEY=your-key-from-admin APP_PASSWORD_ENC=your-encrypted-password-from-adminKeys are rotated weekly - contact MCP Admin for renewal when your key expires
Without a valid license key, the server will display: "You don't have an active key. Please connect with MCP Admin to get access."
Installation
Windows (Recommended - One Click Setup)
# Clone repository
git clone https://github.com/AethereusSF/SF-MCP-Server
cd Salesforce-MCP-Server
# Run setup script (creates venv, installs dependencies, tests installation)
setup.batThat's it! setup.bat handles everything automatically - creates the virtual environment, installs all dependencies, and verifies the installation.
Windows (Manual)
# Clone repository
git clone https://github.com/AethereusSF/SF-MCP-Server
cd Salesforce-MCP-Server
# Create virtual environment
python -m venv venv
venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Test server (optional)
python -m app.main --mcp-stdiomacOS / Linux (Recommended - One Click Setup)
# Clone repository
git clone https://github.com/AethereusSF/SF-MCP-Server
cd Salesforce-MCP-Server
# Make scripts executable
chmod +x setup.sh start_mcp.sh start_http.sh
# Run setup script (creates venv, installs dependencies, tests installation)
./setup.shmacOS / Linux (Manual)
# Clone repository
git clone https://github.com/AethereusSF/SF-MCP-Server
cd Salesforce-MCP-Server
# Create virtual environment
python3 -m venv venv
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Test server (optional)
python -m app.main --mcp-stdioConfigure Claude Desktop
Windows
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"salesforce-mcp-server": {
"command": "C:\\path\\to\\Salesforce-MCP-Server\\start_mcp.bat"
}
}
}macOS / Linux
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"salesforce-mcp-server": {
"command": "/bin/bash",
"args": [
"-c",
"cd '/absolute/path/to/Salesforce-MCP-Server' && venv/bin/python -m app.main --mcp-stdio"
]
}
}
}Important: Replace /absolute/path/to/Salesforce-MCP-Server with your actual absolute path!
First Use
Restart Claude Desktop
Login: Type
"Login to Salesforce production"in a new Claude chatAuthenticate: Browser window opens β Login β Allow access
Start Using: Try
"Check my Salesforce org health"
π οΈ Tool Categories (57 Total - Optimized for LLMs!)
β NEW: Consolidated Tools (Core Operations)
Universal tools that replace 59 specialized tools:
deploy_metadata- Deploy any metadata type (Apex, LWC, Fields, etc.) with single toolfetch_metadata- Fetch any metadata type with consistent interfacelist_metadata- List metadata of any type with filteringbulk_operation- Unified bulk insert/update/delete operationsexport_data- Export data in CSV, JSON, or backup formatsoql_query- Build and execute queries with optional analysisget_object_metadata- Get fields, relationships, and metadata in one callmanage_user_permissions- Manage profiles and permission sets
Benefits: Easier for LLMs to select, more consistent API, flexible parameters
π Debugging & Defect-Solving (1)
diagnose_and_fix_issue- Comprehensive debugging for triggers, flows, validations, fields, permissions, formulas, picklists, lookups, layouts, and reports
Powered by 25 real-world QA scenario patterns:
Trigger recursion and SOQL limit issues
Flow null handling and decision logic
Validation rule date/required field errors
Field-level security and permission issues
Formula field calculations and references
Page layout assignment problems
Report field visibility issues
Broken lookup relationships
Handles 10+ issue types with intelligent diagnosis, root cause analysis, and actionable fix recommendations. See Debugging Guide for complete details.
π Authentication & Sessions (6)
salesforce_production_login- OAuth to production orgsalesforce_sandbox_login- OAuth to sandbox (test.salesforce.com)salesforce_custom_login- OAuth to custom domainsalesforce_login_username_password- Login with username/password/tokensalesforce_logout- Clear all sessionssalesforce_auth_status- Check authentication status
π Multi-Org Management (5)
list_connected_orgs- List all connected orgsswitch_active_org- Switch between orgscompare_metadata_between_orgs- Compare Apex, Flows, etc.compare_object_schemas- Compare field schemasget_org_differences_summary- High-level org comparison
π Metadata Operations (60)
16 Metadata Types Γ 3 Operations (fetch, create, upsert):
Apex Classes - Full CRUD operations
Apex Triggers - Create and manage triggers
Validation Rules - Deploy validation logic
LWC (Lightning Web Components) - Complete bundle management
Custom Objects - Create and configure objects
Custom Fields - Add fields to any object
Flows - Manage Flow definitions
Email Templates - Create email templates
Permission Sets - Configure permissions
Static Resources - Upload JavaScript, CSS, etc.
Custom Metadata Types - Configuration management
Aura Components - Legacy Lightning components
Custom Labels - Translation labels
Record Types - Object record types
Quick Actions - Create quick actions
Custom Tabs - Configure custom tabs
π§ͺ Apex Testing & Debug (3)
run_apex_tests- Run tests with coverageget_apex_test_coverage- Get code coverage detailslist_apex_test_classes- List all test classes
π¦ Bulk Operations (4)
bulk_insert_records- Insert thousands via Bulk API 2.0bulk_update_records- Update thousands of recordsbulk_delete_records- Delete thousands of recordsget_bulk_job_status- Check job progress
πΎ Data Export & Backup (5)
export_data_to_csv- Export SOQL results to CSVexport_object_data- Export entire objectsbackup_object_records- Create timestamped backupsget_record_count- Fast record countingexport_schema_to_json- Export object schemas
π Query Helpers (5)
build_soql_query- Build queries from componentsget_object_fields- Get field metadataget_field_relationships- Get all relationshipsexplain_soql_query- Analyze and optimize queriesquery_with_related_records- Query parent-child records
π Schema Analysis (6)
analyze_object_dependencies- Full dependency analysisfind_unused_fields- Identify unused fieldsgenerate_object_diagram- Generate ERD datalist_all_objects- List all objects (custom/standard)get_field_usage_stats- Field population statisticsanalyze_field_usage- NEW! Comprehensive field usage analysis - find where fields are used across ALL metadata (Apex, Triggers, Flows, Validation Rules, Formulas, Page Layouts, Reports) with CSV export
π€ Process Automation (8)
list_batch_jobs- List Batch Apex jobsget_batch_job_details- Get detailed job infolist_scheduled_jobs- List scheduled Apexabort_batch_job- Stop running batchdelete_scheduled_job- Delete scheduled jobexecute_anonymous_apex- Execute Apex instantlyget_debug_logs- Retrieve debug logsget_debug_log_body- Get full log content
π₯ Org Health & Limits (6)
salesforce_health_check- Comprehensive health checkget_org_limits- API/storage limitsget_org_info- Organization detailsget_current_user_info- Current user profilelist_installed_packages- List managed packagesget_api_usage_stats- API usage statistics
π― Core Operations (2)
execute_soql_query- Run any SOQL queryget_metadata_deploy_status- Check deployment status
π₯ User Management & Permissions (6)
change_user_profile- Change a user's profileassign_permission_set- Assign permission set to a userremove_permission_set- Remove permission set from a userlist_user_permissions- List user's permission sets and profilelist_available_profiles- List all profiles in the orglist_available_permission_sets- List all permission sets in the org
π Advanced Comparison Tools (5)
compare_profiles- Compare two profiles side-by-sidecompare_permission_sets- Compare two permission setscompare_object_field_counts- Compare field counts between orgsfind_similar_fields_across_objects- Find fields with similar names/typescompare_org_object_counts- Compare total object counts between orgs
π Usage Examples
Basic Operations
# Authentication
"Login to Salesforce production"
"Login to Salesforce sandbox"
"Check my login status"
# Health Check
"Check my Salesforce org health"
"Show me my API limits"
# Run Query
"Run SOQL: SELECT Id, Name FROM Account WHERE Industry = 'Technology' LIMIT 10"
# Get Information
"Show me all custom fields on the Account object"
"List all Apex classes in the org"Metadata Management
# Create Apex Class
"Create an Apex class called AccountService with this code:
public class AccountService {
public static List<Account> getHighValueAccounts() {
return [SELECT Id, Name, AnnualRevenue FROM Account WHERE AnnualRevenue > 1000000];
}
}"
# Create Custom Field
"Create a text field called Customer_Code__c on Account with length 50"
# Create Validation Rule
"Create a validation rule on Opportunity that requires Amount when Stage is Closed Won"
# Deploy LWC Component
"Create an LWC component called accountCard"Testing & Debugging
# Run Tests
"Run all Apex tests and show me the code coverage"
"Run tests from AccountServiceTest class"
"Show me code coverage for AccountService"
# Debug
"Get my last 10 debug logs"
"Show me the full log for 07L4x000000AbcD"
"Execute this Apex: System.debug('Test message');"Multi-Org Operations
# Connect Multiple Orgs
"Login to Salesforce production"
"Login to Salesforce sandbox"
# List & Switch
"List all my connected orgs"
"Switch to org 00D4x000000XyzE"
# Compare
"Compare Apex classes between production and sandbox"
"Compare Account schema between the two orgs"
"Get differences summary between my orgs"Bulk Operations
# Bulk Insert
"Bulk insert 1000 Account records with this CSV data: [...]"
# Bulk Update
"Bulk update all Contacts where State is null to set State = 'Unknown'"
# Check Status
"Check status of bulk job 7504x000000AbcD"Data Export
# Export to CSV
"Export all Opportunities from Q4 2024 to CSV"
# Backup
"Backup all Account records"
# Count Records
"How many Leads were created today?"
# Export Schema
"Export Account, Contact, and Opportunity schemas to JSON"Field Usage Analysis (API-Based)
# Analyze single field (fast - excludes reports by default)
"Where is the Case Status field used?"
"Analyze usage of Account.Customer_Type__c field"
# Analyze with reports included (slower but comprehensive)
"Check if Case Status field is used in any reports"
"Analyze Case.Priority including reports"
# Analyze ALL fields on an object (handles 500+ fields)
"Analyze all Case fields and show me where they are used"
"Create a field usage report for all Account fields"
# Analyze all fields including reports
"Analyze all Case fields and check reports too"
# Custom CSV output
"Analyze all Opportunity fields and export to opportunity_audit.csv"
# Results include usage in:
# - Apex Classes (with class names) β
Always checked
# - Apex Triggers (with trigger names) β
Always checked
# - Flows (with flow names) β
Always checked
# - Validation Rules (with rule names) β
Always checked
# - Formula Fields (with field names) β
Always checked
# - Workflow Rules β
Always checked
# - Page Layouts β
Always checked
# - Email Templates β
Always checked
# - Reports β‘ Optional (only if you say "include reports" or "check reports")Automation & Jobs
# Batch Jobs
"Show all running batch jobs"
"Get details for batch job 7074x000000AbcD"
"Abort batch job 7074x000000AbcD"
# Scheduled Jobs
"List all scheduled Apex jobs"
"Delete scheduled job 0884x000000XyzA"User Management
# Change User Profiles
"Change profile for user john.doe@example.com to System Administrator"
"Assign Standard User profile to jane.smith@example.com"
# Manage Permission Sets
"Assign Sales_User permission set to john.doe@example.com"
"Remove Marketing_Access permission set from jane.smith@example.com"
"List all permission sets for user john.doe@example.com"
# Query Profiles and Permission Sets
"List all available profiles in the org"
"Show me all permission sets"Advanced Comparison
# Profile Comparison
"Compare System Administrator and Standard User profiles"
"What are the differences between Sales User and Service User profiles?"
# Permission Set Comparison
"Compare Marketing_Admin and Marketing_User permission sets"
# Cross-Org Comparison
"Compare Account object fields between my two connected orgs"
"Find similar fields across Account and Contact objects"
"Compare total object counts between production and sandbox"π Advanced Features
π Field Usage Analysis (NEW in v2.2!)
The analyze_field_usage tool provides comprehensive field usage analysis across your entire Salesforce org. Perfect for field audits, cleanup projects, and impact analysis before making changes.
What It Does
Analyzes where fields are used across ALL metadata types:
β Apex Classes - Shows which classes reference the field
β Apex Triggers - Identifies trigger dependencies
β Flows - Finds flows using the field (including Process Builder)
β Validation Rules - Checks validation rule formulas
β Formula Fields - Identifies formula field dependencies
β Workflow Rules - Finds workflow field criteria
β Page Layouts - Shows layout field placement
β Reports - Identifies reports using the field
Use Cases
Field Cleanup - Find unused fields before archiving
Impact Analysis - Understand dependencies before changes
Compliance Audit - Document field usage for auditors
Migration Planning - Map field usage across orgs
Documentation - Generate comprehensive field reference
How to Use
# Analyze a single field
"Where is the Case Status field used?"
# Analyze ALL fields on an object (handles 500+ fields efficiently)
"Analyze all Case fields and create a CSV report"
# Custom output filename
"Analyze Account fields and save to account_field_audit.csv"CSV Output
The tool automatically generates a CSV file saved in the Documents/ folder with these columns:
Field Name, Label, Type
Is Custom, Is Required
Apex Classes Count + Names
Triggers Count + Names
Flows Count + Names
Validation Rules Count + Names
Formula Fields Count + Names
Workflow Rules Count + Names
Page Layouts Count + Names
Reports Count + Names
Total Usage Count
Is Referenced (Yes/No)
Storage Location: Documents/{ObjectName}_field_usage_{timestamp}.csv
Performance
NEW in v2.2 - MASSIVELY IMPROVED:
5-6x faster with intelligent batch processing
500 fields analyzed in 5-10 minutes (was 30-45 minutes!)
99% fewer API calls - Only ~15-20 calls for any field count
Smart caching - Fetches ALL metadata once, checks all fields against it
Progress tracking - Updates every 50 fields
Memory efficient - Handles unlimited fields
How it works:
Fetches all Apex, Triggers, Flows, Validations, Workflows, Layouts, Reports ONCE
Caches everything in memory
Checks all fields against cached data (instant!)
Result: 500 fields in ~5-10 minutes instead of 45 minutes!
Configuration
Create a .env file (copy from .env.example):
# License Key (required - get from MCP Admin)
APP_ENCRYPTION_KEY=your-encryption-key-here
APP_PASSWORD_ENC=your-encrypted-password-here
# Server Configuration
SFMCP_MCP_SERVER_NAME=salesforce-mcp-server
SFMCP_LOG_LEVEL=INFO
SFMCP_DEBUG_MODE=false
# OAuth Configuration
SFMCP_OAUTH_CALLBACK_PORT=1717
SFMCP_OAUTH_TIMEOUT_SECONDS=300
# API Configuration
SFMCP_SALESFORCE_API_VERSION=59.0
SFMCP_MAX_RETRIES=3
SFMCP_REQUEST_TIMEOUT_SECONDS=120
# Deployment
SFMCP_DEPLOY_TIMEOUT_SECONDS=300
SFMCP_DEPLOY_POLL_INTERVAL_SECONDS=5Note: The
APP_ENCRYPTION_KEYandAPP_PASSWORD_ENCare required to run the server. Contact your MCP Admin to get a valid license key. Keys are rotated weekly for security.
π Project Structure
Salesforce-MCP-Server/
βββ app/
β βββ main.py # Entry point, tool imports
β βββ config.py # Configuration management
β β
β βββ mcp/
β β βββ server.py # MCP server setup, tool registration
β β βββ tools/ # All 57 MCP tools
β β βββ __init__.py
β β βββ consolidated_metadata.py # Unified metadata deploy/fetch/list
β β βββ consolidated_operations.py # Bulk ops, export, queries, permissions
β β βββ oauth_auth.py # OAuth 2.0 authentication
β β βββ debugging.py # NEW: Issue diagnosis (25 QA patterns)
β β βββ dynamic_tools.py # Apex, triggers, flows, etc.
β β βββ multi_org.py # Multi-org management
β β βββ advanced_comparison.py # Profile/permset/schema comparison
β β βββ user_management.py # User profile/permission management
β β βββ schema_analysis.py # Dependencies, unused fields, ERDs
β β βββ org_management.py # Health check, limits, org info
β β βββ automation.py # Batch jobs, scheduled jobs
β β βββ testing.py # Apex tests, coverage
β β βββ bulk_operations.py # Bulk API operations
β β βββ data_export.py # Export/backup tools
β β βββ query_helpers.py # Query builders
β β βββ utils.py # Response formatting, error handling
β β
β βββ services/
β β βββ salesforce.py # Salesforce connection management
β β
β βββ utils/ # Production-grade utilities
β βββ __init__.py # Utility exports
β βββ validators.py # SOQL injection protection, input validation
β βββ retry.py # Retry logic with exponential backoff
β βββ logging.py # Structured logging
β βββ cache.py # NEW: Caching system (LRU, metadata cache)
β βββ errors.py # NEW: Enhanced error handling
β βββ pagination.py # NEW: Pagination utilities
β βββ connection_pool.py # NEW: Connection pooling
β
βββ requirements.txt # Dependencies
βββ .env.example # Example configuration
βββ README.md # Main documentation
βββ test_all_mcp_tools.py # Comprehensive testing suite
βββ setup.bat # Windows setup script (one-click install)
βββ setup.sh # macOS/Linux setup script (one-click install)
βββ start_mcp.bat # Windows startup script (stdio mode)
βββ start_mcp.sh # macOS/Linux startup script (stdio mode)
βββ start_http.bat # Windows HTTP/SSE server startup
βββ start_http.sh # macOS/Linux HTTP/SSE server startup
βββ Documents/ # CSV exports and reports stored here
βββ README.md # Documents folder info
βββ *.csv # Field usage reports, data exportsTotal Size: 12,500+ lines of Python code (tools only)
Retry Logic
All API calls automatically retry with exponential backoff:
Max attempts: 3 (configurable)
Backoff multiplier: 2.0
Handles transient failures gracefully
Input Validation
Built-in protection against:
SOQL injection
Invalid metadata names
Malformed API requests
Unsafe operations
Structured Logging
Track all operations with correlation IDs:
Request tracking
Error debugging
Performance monitoring
Audit trails
Advanced Infrastructure
Built-in production-grade utilities for optimal performance:
Caching System
LRU cache for metadata and field definitions
Automatic cache invalidation with TTL
Validation rule caching for faster lookups
Significant performance improvements for repeated queries
Enhanced Error Handling
Custom
SalesforceErrorexception with error categoriesError categories: auth, query, deployment, bulk operations
Troubleshooting hints embedded in error messages
Structured error responses with actionable suggestions
Pagination Support
Cursor-based pagination for large result sets
SOQL pagination helpers with automatic batching
List pagination for API responses
Handle datasets of any size efficiently
Connection Pooling
Multi-org connection pooling with state management
Thread-local storage for connection isolation
Pool statistics and monitoring
Automatic cleanup of stale connections
π§ Troubleshooting
"You don't have an active key"
Solution: Contact MCP Admin to get your APP_ENCRYPTION_KEY and APP_PASSWORD_ENC, then add them to your .env file.
"Invalid or expired license key"
Solution: Your weekly license key has expired. Contact MCP Admin for a new key.
"No active Salesforce sessions found"
Solution: Login first: "Login to Salesforce production"
"Token expired"
Solution: Logout and re-login:
"Logout from all Salesforce orgs"
"Login to Salesforce production""Deployment timeout"
Solution: Increase timeout in .env:
SFMCP_DEPLOY_TIMEOUT_SECONDS=600"API limit exceeded"
Solution: Check limits: "Get org limits"
"Wrong org being used"
Solution:
"List connected orgs"
"Switch to org [user_id]"Tools not showing in Claude
Solution:
Check Claude Desktop config file
Verify absolute path is correct
Restart Claude Desktop
Check logs:
%APPDATA%\Claude\logs\
π€ Contributing
We welcome contributions! See our Contributing Guide for details.
Adding New Tools
Create tool function in appropriate module under
app/mcp/tools/Add
@register_tooldecoratorWrite docstring with examples
Add attribution:
"Added by Sameer"in docstringTest thoroughly before submitting PR
Update documentation in
COMPLETE_GUIDE.md
Testing Requirements
Before submitting PRs:
β All existing tests must pass
β New tools must include test scenarios
β Test in sandbox environment first
β Document any API limit implications
π Documentation
Complete Guide - Comprehensive 2000+ line guide with all tools
Debugging Guide - NEW! Diagnose and fix any Salesforce defect
Updates Summary - Latest v2.1 debugging capabilities
Capabilities Overview - Feature summary
Test Report - Latest test results
Contributing - Contribution guidelines
π― Roadmap
Completed β
β Multi-org management (COMPLETED)
β Bulk operations (COMPLETED)
β Schema analysis tools (COMPLETED)
β Apex testing suite (COMPLETED)
β User management tools (COMPLETED)
β Profile and permission set analysis (COMPLETED)
β Advanced comparison tools (COMPLETED)
β Comprehensive debugging and defect-solving (COMPLETED v2.1)
Planned π
π Enhanced Flow builder capabilities
π Data quality checking
π Automated backup scheduling
π CI/CD integration helpers
π Token persistence with encryption
Community Requests
π Dashboard creation tools
π Enhanced security scanning
π Performance profiling
π Multi-language support
π Success Stories
"Deployed a complete feature with 5 Apex classes, 3 triggers, and 10 fields in under 10 minutes using just natural language commands." β Development Team Lead
"Multi-org comparison saved us hours during pre-deployment validation." β DevOps Engineer
"The health check and monitoring tools helped us catch API limit issues before they became critical." β Salesforce Admin
βοΈ License
MIT License - See LICENSE for details
Created by Sameer | Built with Model Context Protocol
π Support
Issues: GitHub Issues
Documentation: Complete Guide
Discussions: GitHub Discussions
π Star History
If this project saved you time, please star the repository! β
Made with β€οΈ by Sameer | Powered by Anthropic Claude
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.