Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Integrations MCPCreate a new issue in Linear: Fix the login button bug"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.pyConfigure 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) functionEach 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 |
| 2 | Advice Slip API | No | — |
Airtable |
| 7 | Airtable (pyairtable) | Yes |
|
Amplitude |
| 8 | Amplitude Analytics API | Yes |
|
arXiv |
| 3 | arXiv API | No | — |
Asana |
| 9 | Asana REST API v1 | Yes |
|
Calendly |
| 9 | Calendly API v2 | Yes |
|
Cloudflare |
| 7 | Cloudflare SDK | Yes |
|
CoinGecko |
| 3 | CoinGecko API v3 | No | — |
REST Countries |
| 6 | restcountries.com v3.1 | No | — |
Currency Exchange |
| 4 | Frankfurter API (ECB) | No | — |
Datadog |
| 6 | Datadog API | Yes |
|
Datetime Utilities |
| 4 | Python stdlib (zoneinfo) | No | — |
Dictionary |
| 5 | Free Dictionary API + Datamuse | No | — |
Dog Images |
| 4 | Dog CEO API | No | — |
Exchange Rates |
| 3 | Frankfurter API (ECB) | No | — |
Figma |
| 8 | Figma REST API v1 | Yes |
|
GitHub |
| 16 | GitHub REST API v3 | Yes |
|
GitHub Public |
| 3 | GitHub REST API (unauth) | No | — |
GitHub Search |
| 4 | GitHub REST API (unauth) | No | — |
Google Calendar |
| 7 | Google Calendar API v3 | Yes |
|
Google Sheets |
| 8 | Google Sheets API v4 | Yes |
|
Hacker News |
| 8 | HN Firebase + Algolia API | No | — |
HubSpot |
| 11 | HubSpot CRM API v3 | Yes |
|
HuggingFace |
| 6 | HuggingFace Hub SDK | Yes |
|
Intercom |
| 10 | Intercom REST API v2.11 | Yes |
|
IP Geolocation |
| 2 | ip-api.com | No | — |
ISS Tracker |
| 3 | Open Notify API | No | — |
Jira |
| 7 | Jira REST API (atlassian-python-api) | Yes |
|
Jokes |
| 2 | JokeAPI v2 | No | — |
Linear |
| 13 | Linear GraphQL API | Yes |
|
Meals |
| 3 | TheMealDB API | No | — |
Mixpanel |
| 10 | Mixpanel APIs | Yes |
|
Monday.com |
| 8 | Monday.com GraphQL API v2 | Yes |
|
NASA |
| 5 | NASA APIs (APOD, NeoWs, Mars) | Optional |
|
Notion |
| 9 | Notion API v1 | Yes |
|
Number Facts |
| 3 | numbersapi.com | No | — |
Numbers |
| 3 | numbersapi.com | No | — |
Numbers API |
| 3 | numbersapi.com | No | — |
Okta |
| 10 | Okta Management API | Yes |
|
Open Library |
| 3 | Open Library API | No | — |
PagerDuty |
| 9 | PagerDuty REST API v2 | Yes |
|
Poetry |
| 3 | PoetryDB | No | — |
Postmark |
| 8 | Postmark API | Yes |
|
QR Code |
| 3 | goqr.me API | No | — |
Quotes |
| 3 | Quotable API + ZenQuotes | No | — |
Random User |
| 2 | RandomUser.me API | No | — |
Random User (alt) |
| 2 | RandomUser.me API | No | — |
Resend |
| 7 | Resend REST API | Yes |
|
RSS/Atom Feeds |
| 3 | Any RSS/Atom feed (feedparser) | No | — |
AWS S3 |
| 8 | AWS S3 (boto3) | Yes |
|
Salesforce |
| 8 | Salesforce REST API v60.0 | Yes |
|
SendGrid |
| 9 | SendGrid Web API v3 | Yes |
|
Sentry |
| 6 | Sentry Web API | Yes |
|
Shopify |
| 11 | Shopify Admin REST API | Yes |
|
Slack |
| 10 | Slack Web API | Yes |
|
Snowflake |
| 8 | Snowflake SQL REST API | Yes |
|
Stripe |
| 11 | Stripe REST API v1 | Yes |
|
Supabase |
| 11 | Supabase Management API + PostgREST | Yes |
|
Timezone |
| 5 | WorldTimeAPI | No | — |
Trivia |
| 2 | Open Trivia DB | No | — |
Twilio |
| 8 | Twilio REST API | Yes |
|
Vercel |
| 7 | Vercel REST API | Yes |
|
Weather |
| 3 | Open-Meteo + Nominatim | No | — |
Weather (Open-Meteo) |
| 2 | Open-Meteo API | No | — |
Wikipedia |
| 4 | Wikimedia REST API | No | — |
Zendesk |
| 9 | Zendesk REST API v2 | Yes |
|
Total: 66 providers · 390+ tools · 34 authenticated · 32 free/public
Detailed Tool Reference
See providers/PROVIDERS.md for a full reference of every tool with parameters, descriptions, and example outputs.
Adding a New Provider
Create
providers/your_provider.pywith aregister(mcp)function.Use
@mcp.tool()to decorate each tool function.Add
("providers.your_provider", "register")to the_PROVIDERSlist inproviders/__init__.py.Add any new dependencies to
pyproject.toml.
def register(mcp):
@mcp.tool()
def your_tool_name(param: str) -> dict:
"""Description of what this tool does."""
# implementation
return {"result": "..."}License
See repository for license details.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.