Welcome to Alloy MCP Server! This tutorial will get you from zero to your first working integration in just 5 minutes. By the end, you’ll have created your first MCP server, connected an MCP client to a business platform, and performed your first automated action.
MCP Client: Claude Desktop (Download here), your backend application, or any MCP-compatible client
Credentials to Connectors: Ensure you have access to creating credentials for the connectors (Slack, HubSpot, Notion, etc.) you’re looking to support or interact with.
Open your terminal and run this command (replace YOUR_API_KEY with your API key):
curl -X POST https://mcp.runalloy.com/api/servers \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "My First MCP Server", "description": "Connects AI assistants to business platforms" }'
You should see:
{ "serverId": "my-first-mcp-server-a1b2c3d4", "name": "My First MCP Server", "description": "Connects AI assistants to business platforms", "accessToken": "mcp_token_xyz789", "url": "https://mcp.runalloy.com/mcp/my-first-mcp-server-a1b2c3d4", "accessUrl": "https://mcp.runalloy.com/mcp/my-first-mcp-server-a1b2c3d4/mcp_token_xyz789"}
Important: Be sure to copy the accessUrl field as this is your server’s unique address.
To connect your MCP server to a platform, in your MCP client, type:
"Show me available platforms to connect"
The AI assistant will list available integrations. You can then choose to connect to a specific platform. The assistant will guide you through the authentication process:
For OAuth platforms: You’ll receive an authorization link
For API key platforms: You’ll be prompted to provide credentials
Once connected, the model should confirm that the connection was successful: “I’ve connected [Platform]“