mcp_id int(11) not_null auto_increment
username varchar(64) not_null
mcp_key text not_null
status tinyint(1) not_null
date_added datetime not_null
date_modified datetime default NULL
select_data tinyint(1) not_null
update_data tinyint(1) not_null
create_data tinyint(1) not_null
delete_data tinyint(1) not_null
create_db tinyint(1) not_null
server_host varchar(255) not_null default('localhost')
server_port int(6) not_null default 3000
ssl_enabled tinyint(1) not_null default(0)
alert_threshold int(6) default(20)
latency_threshold int(6) default(1000)
downtime_threshold int(6) default(300)
data_retention int(3) default(7)
alert_notification tinyint(1) not_null default(0)

--
primary mcp_id
idx_mcp_id mcp_id

##
engine innodb
character_set utf8mb4
collate utf8mb4_unicode_ci