Integrations MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
pip install -e .
python server.py
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add integrations-mcp -- python "<FULL_PATH_TO_INTEGRATIONS_MCP>/dist/index.js"

Replace <FULL_PATH_TO_INTEGRATIONS_MCP>/dist/index.js with the actual folder you prepared in step 1.

README.md

A comprehensive MCP server providing over 390 tools across 66 providers

integrations-mcp

Built by an autnomous agent over about a day

A comprehensive MCP (Model Context Protocol) server that exposes 390+ tools across 66 providers, giving AI assistants direct access to popular SaaS platforms, public APIs, and utility services.

Quick Start

# Install dependencies
pip install -e .

# Run the MCP server
python server.py

Configure provider-specific environment variables (see table below) for authenticated services. Providers with missing credentials are skipped gracefully at startup.

Architecture

server.py                  → FastMCP entry point
providers/__init__.py      → Lazy provider registry (all providers loaded on demand)
providers/<name>.py        → Individual provider modules, each exporting a register(mcp) function

Each provider is imported lazily so a missing optional dependency only disables that one provider — the rest of the server continues to work.

Provider Table

Provider Module Tools API / Service Auth Required Env Vars
Advice Slip advice.py 2 Advice Slip API No
Airtable airtable_provider.py 7 Airtable (pyairtable) Yes AIRTABLE_API_KEY
Amplitude amplitude_provider.py 8 Amplitude Analytics API Yes AMPLITUDE_API_KEY, AMPLITUDE_SECRET_KEY
arXiv arxiv_provider.py 3 arXiv API No
Asana asana_provider.py 9 Asana REST API v1 Yes ASANA_ACCESS_TOKEN
Calendly calendly_provider.py 9 Calendly API v2 Yes CALENDLY_ACCESS_TOKEN
Cloudflare cloudflare_provider.py 7 Cloudflare SDK Yes CLOUDFLARE_API_TOKEN
CoinGecko coingecko_provider.py 3 CoinGecko API v3 No
REST Countries countries.py 6 restcountries.com v3.1 No
Currency Exchange currency.py 4 Frankfurter API (ECB) No
Datadog datadog_provider.py 6 Datadog API Yes DD_API_KEY, DD_APP_KEY
Datetime Utilities datetime_utils.py 4 Python stdlib (zoneinfo) No
Dictionary dictionary.py 5 Free Dictionary API + Datamuse No
Dog Images dogs.py 4 Dog CEO API No
Exchange Rates exchange_rates.py 3 Frankfurter API (ECB) No
Figma figma_provider.py 8 Figma REST API v1 Yes FIGMA_ACCESS_TOKEN
GitHub github_provider.py 16 GitHub REST API v3 Yes GITHUB_TOKEN
GitHub Public github_public.py 3 GitHub REST API (unauth) No
GitHub Search github_search.py 4 GitHub REST API (unauth) No
Google Calendar google_calendar.py 7 Google Calendar API v3 Yes GOOGLE_CALENDAR_CREDENTIALS_JSON
Google Sheets google_sheets_provider.py 8 Google Sheets API v4 Yes GOOGLE_SERVICE_ACCOUNT_JSON or GOOGLE_SHEETS_API_KEY
Hacker News hackernews_provider.py 8 HN Firebase + Algolia API No
HubSpot hubspot_provider.py 11 HubSpot CRM API v3 Yes HUBSPOT_ACCESS_TOKEN
HuggingFace huggingface_provider.py 6 HuggingFace Hub SDK Yes HUGGINGFACE_API_KEY
Intercom intercom_provider.py 10 Intercom REST API v2.11 Yes INTERCOM_ACCESS_TOKEN
IP Geolocation ipgeo.py 2 ip-api.com No
ISS Tracker iss.py 3 Open Notify API No
Jira jira_provider.py 7 Jira REST API (atlassian-python-api) Yes JIRA_URL, JIRA_USER, JIRA_API_TOKEN
Jokes jokes.py 2 JokeAPI v2 No
Linear linear_provider.py 13 Linear GraphQL API Yes LINEAR_API_KEY
Meals meals.py 3 TheMealDB API No
Mixpanel mixpanel_provider.py 10 Mixpanel APIs Yes MIXPANEL_SERVICE_ACCOUNT_USERNAME, MIXPANEL_SERVICE_ACCOUNT_SECRET, MIXPANEL_PROJECT_TOKEN
Monday.com monday_provider.py 8 Monday.com GraphQL API v2 Yes MONDAY_API_KEY
NASA nasa.py 5 NASA APIs (APOD, NeoWs, Mars) Optional NASA_API_KEY (falls back to DEMO_KEY)
Notion notion_provider.py 9 Notion API v1 Yes NOTION_API_KEY
Number Facts numberfacts.py 3 numbersapi.com No
Numbers numbers.py 3 numbersapi.com No
Numbers API numbers_api.py 3 numbersapi.com No
Okta okta_provider.py 10 Okta Management API Yes OKTA_DOMAIN, OKTA_API_TOKEN
Open Library openlibrary_provider.py 3 Open Library API No
PagerDuty pagerduty_provider.py 9 PagerDuty REST API v2 Yes PAGERDUTY_API_KEY
Poetry poetry.py 3 PoetryDB No
Postmark postmark_provider.py 8 Postmark API Yes POSTMARK_SERVER_TOKEN
QR Code qrcode.py 3 goqr.me API No
Quotes `quote

Tools (3)

github_searchSearch repositories, issues, or code on GitHub.
asana_list_tasksList tasks from an Asana project.
notion_query_databaseQuery a Notion database for specific entries.

Environment Variables

GITHUB_TOKENAPI token for GitHub integration
AIRTABLE_API_KEYAPI key for Airtable
ASANA_ACCESS_TOKENAccess token for Asana
LINEAR_API_KEYAPI key for Linear
NOTION_API_KEYAPI key for Notion

Configuration

claude_desktop_config.json
{"mcpServers": {"integrations": {"command": "python", "args": ["/path/to/integrations-mcp/server.py"], "env": {"GITHUB_TOKEN": "your_token_here", "SLACK_TOKEN": "your_token_here"}}}}

Try it

Search GitHub for recent issues related to the MCP protocol.
List my current tasks from Asana.
Query my Notion database for tasks marked as 'In Progress'.
Get the current exchange rate for USD to EUR.
Fetch the latest news from Hacker News.

Frequently Asked Questions

What are the key features of Integrations MCP?

Provides 390+ tools across 66 different providers. Supports major SaaS platforms including GitHub, Slack, Stripe, and Notion. Lazy loading architecture ensures only required providers are initialized. Unified interface for interacting with public APIs and utility services.

What can I use Integrations MCP for?

Automating project management tasks across Asana, Linear, and Jira. Syncing data between SaaS platforms like Airtable and Google Sheets. Retrieving real-time data from public APIs like CoinGecko or Weather services. Managing developer workflows by searching GitHub repositories and issues.

How do I install Integrations MCP?

Install Integrations MCP by running: pip install -e . && python server.py

What MCP clients work with Integrations MCP?

Integrations MCP works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Integrations MCP docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare