Model Context Protocol (MCP)
Swytchcode can be accessed via an MCP server from the Claude Desktop host or any MCP-based client. This guide explains how to run the MCP server locally, as Claude Desktop only supports a local server.
As of now, Claude.ai does not support MCP servers. However, you can host the Swytchcode MCP Server anywhere and access it using an MCP client, bypassing Claude Desktop.
Requirements
- Node.js
- A copy of Swytchcode-MCP-Server
- SWYTCHCODE_API_KEY: To interact with Sywtchcode APIs, you’ll need to have an account with Swytchcode.
Obtain Swytchcode API Key
Open api_key.sh
file and replace the following parameters with your own
EMAIL="USERNAME"PASSWORD="PASSWORD"
Run the following command to obtain the Swytchcode API key
# Permissionschmod +x api_key.sh
# Execute script./api_key.sh
Note: Ensure jq
is installed on your system
Replace the value with your actual key in index.ts
file
const SWYTCHCODE_API_KEY = "YOUR KEY"
Installation
cd swytchcode-mcp-server
# install dependenciesnpm install
# build projectnpm run build
Configuration with Claude Desktop
Mac/Linux
Open the file with any code editor. We are using VSC in our case
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
and paste the following after modifying the path to your script
{ "mcpServers": { "swytchcode": { "command": "node", "args": [ "/ABSOLUTE/PATH/TO/PARENT/FOLDER/swytchcode-mcp-server/build/index.js" ] } }}
Windows
Open the following file
code $env:AppData\Claude\claude_desktop_config.json
and paste the following after modifying the path to your script
{ "mcpServers": { "swytchcode": { "command": "node", "args": [ "C:\\PATH\\TO\\PARENT\\FOLDER\\swytchcode-mcp-server\\build\\index.js" ] } }}
Invoking from Claude Desktop
Restart Calude Desktop after the changes are made to the claude_desktop_config.json
file. You should now see 2 new tools installed
- swytchcode-generate-code
- swytchcode-list-options
Try running the following command
list workflows stripe:v3 *
If you see an output, then congratulations! you have installed Swytchcode MCP server successfully 🎉🎉
You can find all the available commands here