Skip to main content
Glama

Contact Authorities MCP Server

by RhysSullivan
create-tables.sql724 B
-- Create contact_events table for production database CREATE TABLE IF NOT EXISTS contact_events ( id VARCHAR(255) PRIMARY KEY, title VARCHAR(500) NOT NULL, target VARCHAR(100) NOT NULL, description TEXT NOT NULL, ip_address VARCHAR(45) NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, INDEX idx_created_at (created_at), INDEX idx_ip_address (ip_address) ); -- Create rate_limits table for persistent rate limiting CREATE TABLE IF NOT EXISTS rate_limits ( ip_address VARCHAR(45) PRIMARY KEY, request_count INT DEFAULT 0, window_start TIMESTAMP DEFAULT CURRENT_TIMESTAMP, last_request TIMESTAMP DEFAULT CURRENT_TIMESTAMP, INDEX idx_window_start (window_start) );

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/RhysSullivan/contact-authorities-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server