automation-mcp-server

Alexandria-s-Design/automation-mcp-server

3.2

If you are the rightful owner of automation-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

This is a custom automation server with MCP integration designed for Claude Code CLI, enabling users to create and manage automation workflows.

Tools
4
Resources
0
Prompts
0

Automation MCP Server

Custom automation server with MCP integration for Claude Code CLI.

Features

  • Create and manage automation workflows entirely from PowerShell/Claude Code
  • Support for cron schedules, webhooks, and manual triggers
  • Execute HTTP requests and integrate with external APIs
  • SQLite database for workflow storage
  • Execution history and logging

Available MCP Tools

create_workflow

Create a new automation workflow

Example:

{
  "name": "Daily Weather Alert",
  "description": "Send weather data every morning",
  "trigger_type": "cron",
  "trigger_config": { "schedule": "0 9 * * *" },
  "actions": [
    {
      "type": "http",
      "name": "get_weather",
      "method": "GET",
      "url": "https://api.weather.com/v1/current",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  ]
}

list_workflows

List all automation workflows

execute_workflow

Manually trigger a workflow execution

list_executions

View execution history and logs

Deployment

Deployed on Render with persistent SQLite storage.

Usage from Claude Code

# Connect MCP server
claude mcp add automation-server

# Create workflows via Claude Code CLI
# Example: "Create a workflow that checks my GitHub stars daily"