WCP works with any MCP server — this list covers the most popular ones. If a server exposes read + write tools for the same entity type (notes, tasks, files, etc.), WCP can sync it with any other compatible server.
App Package Required env Notion @notionhq/notion-mcp-serverNOTION_API_KEYObsidian mcp-obsidianOBSIDIAN_VAULTEvernote @anthropic/mcp-server-evernoteEVERNOTE_TOKENApple Notes mcp-apple-notes(macOS only, no env needed)
curl -X POST http://localhost:8000/api/connections \
-H " Content-Type: application/json " \
"args": ["-y", "@notionhq/notion-mcp-server"],
"env": { "NOTION_API_KEY": "ntn_..." }
App Package Required env Linear @linear/mcp-serverLINEAR_API_KEYGitHub Issues @anthropic/mcp-server-githubGITHUB_TOKENJira @anthropic/mcp-server-jiraJIRA_URL, JIRA_EMAIL, JIRA_TOKENTodoist @anthropic/mcp-server-todoistTODOIST_API_TOKENAsana @anthropic/mcp-server-asanaASANA_ACCESS_TOKEN
curl -X POST http://localhost:8000/api/connections \
-H " Content-Type: application/json " \
"args": ["-y", "@linear/mcp-server"],
"env": { "LINEAR_API_KEY": "lin_api_..." }
App Package Required env Google Drive @anthropic/mcp-server-gdriveGOOGLE_APPLICATION_CREDENTIALSDropbox @anthropic/mcp-server-dropboxDROPBOX_ACCESS_TOKENOneDrive @anthropic/mcp-server-onedriveAZURE_CLIENT_ID, AZURE_CLIENT_SECRETFilesystem @anthropic/mcp-server-filesystemALLOWED_DIRS
# Example: local filesystem
curl -X POST http://localhost:8000/api/connections \
-H " Content-Type: application/json " \
"args": ["-y", "@anthropic/mcp-server-filesystem"],
"env": { "ALLOWED_DIRS": "/home/user/Documents" }
App Package Required env Slack @anthropic/mcp-server-slackSLACK_BOT_TOKENDiscord @anthropic/mcp-server-discordDISCORD_BOT_TOKENGmail @anthropic/mcp-server-gmailGOOGLE_APPLICATION_CREDENTIALS
curl -X POST http://localhost:8000/api/connections \
-H " Content-Type: application/json " \
"args": ["-y", "@anthropic/mcp-server-slack"],
"env": { "SLACK_BOT_TOKEN": "xoxb-..." }
App Package Required env GitHub @anthropic/mcp-server-githubGITHUB_TOKENGitLab @anthropic/mcp-server-gitlabGITLAB_TOKEN, GITLAB_URLSentry @anthropic/mcp-server-sentrySENTRY_AUTH_TOKEN, SENTRY_ORG
App Package Required env Google Sheets @anthropic/mcp-server-gsheetsGOOGLE_APPLICATION_CREDENTIALSAirtable @anthropic/mcp-server-airtableAIRTABLE_API_KEYPostgreSQL @anthropic/mcp-server-postgresDATABASE_URL
curl -X POST http://localhost:8000/api/connections \
-H " Content-Type: application/json " \
"args": ["-y", "@anthropic/mcp-server-airtable"],
"env": { "AIRTABLE_API_KEY": "pat..." }
WCP matches servers by capability ID — derived from the entity type their tools operate on. Two servers are syncable when:
Both expose read + write tools
The tools operate on the same entity type (notes, tasks, files, messages)
WCP can map the data between their schemas
Run GET /api/capabilities/syncable-pairs after scanning to see exactly which of your connected apps can sync with each other.