🤖 AI Workspace MCP Server

● RUNNING

A Model Context Protocol server providing AI with secure file management and Python execution capabilities. Deploy on Vercel for serverless AI workspace operations.

📡 API Endpoints

GET / Server info
GET /health Health check
GET /tools List available tools
POST /execute Execute a tool

🛠️ Available Tools

create_file
Create new files
read_file
Read file contents
update_file
Update existing files
delete_file
Delete files
list_files
List directory contents
execute_python
Run Python scripts
create_directory
Create directories
curl -X POST https://your-project.vercel.app/execute \
  -H "Content-Type: application/json" \
  -d '{
    "tool": "create_file",
    "arguments": {
      "filepath": "hello.py",
      "content": "print(\"Hello AI!\")"
    }
  }'