Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
"""add new enum value MCP for protocol

Revision ID: c80cbb3ec1e9
Revises: 0d328a61b91f
Create Date: 2025-08-06 18:17:49.583763+00:00

"""
from typing import Sequence, Union

from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision: str = 'c80cbb3ec1e9'
down_revision: Union[str, None] = '0d328a61b91f'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
op.execute("ALTER TYPE protocol ADD VALUE 'MCP'")


def downgrade() -> None:
pass
2 changes: 2 additions & 0 deletions backend/aci/cli/aci.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
delete_app,
fuzzy_test_function_execution,
get_app,
mcp,
rename_app,
update_agent,
upsert_app,
Expand All @@ -34,6 +35,7 @@ def cli() -> None:
cli.add_command(create_random_api_key.create_random_api_key)
cli.add_command(fuzzy_test_function_execution.fuzzy_test_function_execution)
cli.add_command(billing.populate_subscription_plans)
cli.add_command(mcp.generate_functions_file_from_mcp_server)

if __name__ == "__main__":
cli()
Loading