Connect Claude to the Swoop MCP server and create presentations directly from your conversations. Setup differs depending on which Claude client you use.
Prerequisites
Claude Desktop
Web & Mobile
Desktop setup
Locate the config file
Open the Claude Desktop configuration file:~/Library/Application\ Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Create the file if it doesn’t exist. Add the Swoop MCP server
Add the following configuration:{
"mcpServers": {
"swoop": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://app.swoop.it/api/mcp"
]
}
}
}
This uses mcp-remote to connect to the Swoop server with automatic OAuth authentication. Restart Claude Desktop
Close and reopen Claude Desktop for the configuration to take effect.
Authenticate
On first use, a browser window opens for you to sign in with your Swoop account. After signing in, the connection is established automatically.
Verify the connection
Look for the MCP tools icon in Claude Desktop’s interface. You should see ask_swoopAgent listed as an available tool.
Using an API key instead of OAuth
If you prefer API key authentication, use the --header flag with mcp-remote:{
"mcpServers": {
"swoop": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://app.swoop.it/api/mcp",
"--header",
"Authorization:Bearer ak_your_api_key_here"
]
}
}
}
See Authentication for details on creating API keys.Web and mobile setup
Open Claude settings
Go to claude.ai, click your profile icon, and select Settings. Navigate to integrations
In the settings sidebar, select Connectors (or MCP Servers depending on your plan).
Add the Swoop MCP server
Click Add custom connector and enter the Swoop MCP server URL:
Authenticate
Follow the OAuth prompt to sign in with your Swoop account. Once authenticated, the integration is active.
Verify the connection
Start a new conversation. You should see Swoop listed as an available integration. The ask_swoopAgent tool will be available to Claude.
Using an API key instead of OAuth
If your organization requires API key authentication, you can configure the integration with a Bearer token. See Authentication for details on creating API keys.
Usage
Once connected, ask Claude to create presentations naturally:
- “Use Swoop to create a presentation about quarterly sales results”
- “Make a 10-slide deck explaining our product roadmap with Swoop”
Claude maintains the conversation thread automatically. Follow-up messages in the same conversation build on previous Swoop interactions, so you can iteratively refine your presentation.