Business application MCP servers connect AI assistants to the platforms that power your organization's daily operations: CRM systems, e-commerce platforms, project management tools, knowledge bases, and automation platforms. These servers enable natural language control over business-critical workflows, letting teams manage customer relationships, process orders, track projects, and orchestrate cross-platform automation without switching between dozens of tabs and dashboards.
The Model Context Protocol provides the standardized interface that makes this possible. Each business application server translates natural language requests into the appropriate API calls for its platform, handling authentication, pagination, data formatting, and error recovery. The result is a unified conversational interface to your entire business tool stack. This guide covers all available business application MCP servers, how to set them up in Claude Desktop and other clients, common workflows for CRM, e-commerce, and project management, security best practices for handling sensitive business data, and strategies for combining business servers with other MCP integrations to build powerful cross-platform automation.
The Notion MCP server provides access to your Notion workspace including pages, databases, blocks, and comments. It supports creating and updating pages, querying databases with filters and sorts, searching across your workspace, and managing page properties. Notion is widely used as a knowledge base, wiki, and project tracker, making this server valuable for teams that centralize their documentation and workflows in Notion. The AI can search your knowledge base, create meeting notes, update project databases, and extract information from existing pages, all through natural language.
The Jira MCP server connects AI assistants to Atlassian Jira for issue tracking and project management. It supports creating, updating, and searching issues, managing sprints, querying boards, and accessing project metadata. For engineering teams, this server streamlines sprint planning, bug triage, and progress reporting. You can ask the AI to "create a bug ticket for the login timeout issue, assign it to the backend team, and set the priority to high" without opening Jira in your browser. The server supports JQL queries, so even complex searches become natural language conversations.
The Linear MCP server brings AI capabilities to Linear's modern issue tracking platform. It supports creating and updating issues, managing cycles, searching across projects, and handling team assignments. Linear is popular among fast-moving engineering teams for its speed and thoughtful design, and this MCP server brings the same efficiency to AI-assisted project management. You can triage incoming issues, plan sprints, and generate status reports all through conversation. Linear's GraphQL API makes the MCP integration especially flexible for complex queries.
The Shopify MCP server connects AI assistants to your Shopify e-commerce store. It supports product management, order processing, inventory tracking, customer data access, and store configuration. For e-commerce teams, this server enables natural language management of their entire storefront: creating products, checking inventory levels, processing orders, and analyzing sales data without navigating Shopify's admin interface. Combine it with the Stripe server for complete payment and commerce management.
The HubSpot MCP server provides access to HubSpot's CRM, marketing, and sales platform. It supports contact management, deal tracking, email campaign management, and reporting. For go-to-market teams, this server enables AI-powered customer relationship management: finding contacts, updating deal stages, checking pipeline status, and generating sales reports through natural language queries.
The Salesforce MCP server connects to the world's most widely used CRM platform. It supports SOQL queries, object management (accounts, contacts, opportunities, leads), report generation, and workflow triggering. For enterprise sales teams, this server provides natural language access to the full Salesforce data model, enabling complex queries and data updates without learning SOQL syntax or navigating Salesforce's extensive UI.
The Zapier MCP server acts as a force multiplier for your MCP setup by connecting to Zapier's automation platform, which integrates with over 6,000 applications. It can trigger Zaps, manage existing automations, and interact with any Zapier-connected service through natural language. This server effectively extends your AI assistant's reach to thousands of additional platforms without needing individual MCP servers for each one. For teams with existing Zapier workflows, this server adds AI intelligence to their automation layer.
The Confluence MCP server provides access to Atlassian Confluence for team documentation and knowledge management. It supports searching pages, reading content, creating and updating pages, and managing spaces. For organizations that use Confluence as their internal wiki, this server enables the AI to access and contribute to your team's knowledge base. It pairs naturally with the Jira server for teams using the Atlassian suite.
The Figma MCP server connects AI assistants to Figma's design platform. It supports reading design files, inspecting component properties, extracting design tokens, and navigating through design systems. For teams that bridge design and development, this server lets developers query design specifications, extract color values and spacing tokens, and understand component hierarchies without switching to the Figma interface. It is particularly valuable when combined with Developer Tools for design-to-code workflows.
| Server | Category | Best For | Auth Method |
|---|---|---|---|
| Notion | Knowledge Base | Docs, wikis, project tracking | Integration token |
| Jira | Project Management | Issue tracking, sprints | API token + email |
| Linear | Project Management | Fast-moving eng teams | API key |
| Shopify | E-commerce | Products, orders, inventory | Admin API token |
| Salesforce | CRM | Enterprise sales, SOQL | OAuth / Connected App |
| HubSpot | CRM + Marketing | SMB sales, email campaigns | API key / OAuth |
| Zapier | Automation | Cross-platform workflows | API key |
Business teams spend a significant portion of their day navigating between different SaaS platforms: updating CRM records, creating project tickets, writing documentation, and managing e-commerce operations. Each platform has its own interface, search syntax, and workflow quirks. Business application MCP servers eliminate this fragmentation by providing a single conversational interface to all these tools.
The impact goes beyond convenience. When an AI assistant can access both your CRM and your project management tool simultaneously, it can perform cross-platform operations that would otherwise require manual data transfer. For example, "find all high-priority customer issues in Jira and check if the affected accounts in Salesforce have open renewals" becomes a single request instead of a multi-step manual process across two platforms.
For non-technical business users, these servers are especially transformative. A sales rep can ask "show me all deals closing this month with a value over $50,000" without knowing SOQL syntax. A product manager can ask "create an epic for the Q3 mobile redesign with 5 user stories" without navigating Jira's complex creation flow. A store manager can ask "which products have less than 10 units in stock?" without running Shopify reports. This democratization of business tool access enables teams to move faster and make more data-informed decisions.
Here is how to set up the Notion MCP server, one of the most popular business application integrations:
# Install the Notion MCP server
npm install -g @modelcontextprotocol/server-notion
# Create an internal Notion integration at https://www.notion.so/my-integrations
# and share relevant pages/databases with the integration
export NOTION_API_KEY="ntn_your_integration_token"
# Run the server
npx @modelcontextprotocol/server-notion
To configure the Notion server in Claude Desktop, add it to your claude_desktop_config.json:
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-notion"],
"env": {
"NOTION_API_KEY": "ntn_your_integration_token"
}
}
}
}
For Jira, configure your Atlassian credentials:
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-jira"],
"env": {
"JIRA_URL": "https://your-domain.atlassian.net",
"JIRA_EMAIL": "[email protected]",
"JIRA_API_TOKEN": "your-jira-api-token"
}
}
}
}
For Shopify, create a custom app in your Shopify admin to get API credentials:
{
"mcpServers": {
"shopify": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-shopify"],
"env": {
"SHOPIFY_STORE_URL": "your-store.myshopify.com",
"SHOPIFY_ACCESS_TOKEN": "shpat_your_admin_token"
}
}
}
}
Each business application server requires API credentials from its respective platform. Most platforms provide API tokens or OAuth-based authentication. Our First MCP Server tutorial provides step-by-step guidance, and the Security Fundamentals tutorial covers credential management best practices.
Business application MCP servers are the right choice in these key scenarios:
Cross-platform data queries: When you need to correlate data across multiple business tools. Ask the AI to "find all customers in Salesforce who purchased product X on Shopify in the last 30 days" and get results that would otherwise require exporting data from both platforms and joining it manually.
Bulk operations: When you need to update many records at once. Create 20 Jira tickets from a list of requirements, update all products in a Shopify collection with new pricing, or tag all contacts in HubSpot who match specific criteria. The AI handles the repetition while you review the results.
Status reporting: When stakeholders need regular updates from multiple tools. The AI can pull sprint progress from Linear, revenue data from Shopify, and pipeline status from Salesforce, then compile everything into a concise executive summary.
Workflow automation: When tasks span multiple platforms. A customer support workflow might involve checking Salesforce for customer history, creating a Jira ticket for the engineering team, posting an update to Slack, and sending a follow-up email via SendGrid. The AI orchestrates all of this in a single conversation.
Business application MCP servers handle sensitive data including customer information, financial records, and internal documentation. Follow these best practices:
Review our MCP Server Security Guide for comprehensive recommendations on securing business application MCP connections.
Business application servers pair naturally with many other MCP categories. Here are the most impactful combinations:
| Combination | Workflow |
|---|---|
| Slack + Jira | Post sprint updates and ticket notifications to team channels |
| Salesforce + Twilio | Send personalized SMS to customers based on CRM data |
| Shopify + Stripe | Complete commerce and payment management in one conversation |
| GitHub + Linear | Link PRs to tickets and update issue status on merge |
| Figma + Jira | Create implementation tickets from design specs |
| Notion + Zoom | Store meeting notes and action items in knowledge base |
Connect Communication servers like Slack and Discord for automated customer outreach and team notifications. Use Analytics servers like Grafana for business intelligence dashboards that combine operational metrics with CRM data. Pair with Database servers for deep data analysis that goes beyond what CRM reporting tools offer. Connect API servers like Stripe and Twilio for payment processing and customer communication workflows.
To get started with the MCP ecosystem, read our What is MCP? tutorial. For custom integrations with business platforms not yet covered by existing servers, see Build Your First MCP Server in Python. For IDE integration, check our guide on MCP Servers for Cursor, VS Code, and Claude.
Once you have business application MCP servers running, consider these advanced patterns for maximum value:
Customer 360 view: Run Salesforce (or HubSpot), Shopify, and Slack servers simultaneously. When a customer reaches out, the AI can pull their CRM record, check their order history, review any open support tickets in Jira, and search Slack for internal discussions about their account, all in seconds. This comprehensive view enables more informed and faster customer interactions.
Automated sprint ceremonies: Use Jira or Linear alongside the Memory server to automate sprint planning and retrospectives. The AI remembers velocity trends and team capacity from previous sprints, pulls the current backlog, and suggests sprint goals based on historical performance. Store sprint summaries in Notion for long-term tracking.
E-commerce automation pipeline: Combine Shopify (inventory alerts), Stripe (payment verification), SendGrid (order confirmation emails), and Slack (team notifications) into an end-to-end commerce automation workflow. The AI monitors inventory levels, flags low-stock items, and sends reorder notifications to the appropriate channel.
Knowledge base maintenance: Use the Filesystem server to read source code documentation alongside Notion or Confluence to keep your knowledge base in sync with your codebase. The AI can identify outdated documentation by comparing it with the current implementation and update the knowledge base pages accordingly.
Cross-platform reporting with Sequential Thinking: For complex business reports that require data from multiple sources, the Sequential Thinking server helps the AI plan the data collection strategy, execute queries across multiple business applications, and synthesize the results into a structured report. This produces higher-quality reports than ad-hoc queries because the AI plans the entire analysis before executing it.
To explore more servers that complement business workflows, browse our Communication, APIs, and Analytics categories.
The most common issue with business application MCP servers is API permission scoping. For Notion, the integration token only has access to pages and databases that have been explicitly shared with the integration. If the AI cannot find a page you expect it to access, open that page in Notion and share it with your integration using the "Connections" menu. This sharing model is a key security feature but can be confusing during initial setup.
For Jira and Confluence, API tokens are tied to your Atlassian account email. Ensure the email in your MCP configuration matches the email associated with the API token. Project-level permissions also apply: if your Atlassian account does not have access to a specific project, the MCP server cannot access it either. Check your project permissions in the Atlassian admin panel if you encounter "project not found" errors.
For Salesforce, Connected App configuration requires careful attention to OAuth scopes and IP restrictions. If you are using a sandbox environment for testing, ensure the Connected App is configured for the correct environment. Salesforce also enforces API call limits based on your edition, so monitor your daily API usage to avoid hitting limits during heavy automation workflows. Consider using bulk API endpoints for operations that update many records at once.
Showing 24 of 262 servers, sorted by popularity.
The Stripe Model Context Protocol server allows you to integrate with Stripe APIs through function calling. This protocol supports various tools to interact with different Stripe services.
npmGet comprehensive report for ticker: overview, news, metrics, performance, dates, analyst recommendations, and upgrades/downgrades.
npmThis is a Model Context Protocol (MCP) server that provides comprehensive financial data from Yahoo Finance. It allows you to retrieve detailed information about stocks, including historical prices, company information, financial statements, options
npmSEC EDGAR MCP server that provides access to the US public filings through the US SEC EDGAR API
npmRazorpay's Official MCP Server
npmGet historical stock market data Args: symbol: Stock symbol/ticker (e.g. '000001') interval: Time interval ('minute','hour','day','week','month','year') interval_multiplier: Interval mult
npmpolymarket mcp server market discovery and analysis via public APIs; optional authenticated trading and portfolio tools when your wallet derives (or supplies) CLOB L2 credentials polymarket mcp server market discovery and analysis via public APIs; op
npmReal-time financial market data: stocks, forex, crypto, commodities, and economic indicators
npmTool name: getUserId Description: Get the userId of the current authenticated user if signed in, otherwise return null. Use this tool when you need to identify the current user but don't need their pr
npm🐍 ☁️ - An MCP server providing a range of cryptocurrency technical analysis indicators and strategie.
npmA read-only MCP server that provides LLMs with introspection data and documentation for the Freqtrade codebase. It enables AI tools to access class signatures, method details, and configuration schemas to assist in writing more reliable trading strat
npmOpen-source FRED MCP Server (Federal Reserve Economic Data)
npm🐍 ☁️ – A Dockerized Python MCP server that bridges your local AI (e.g., Claude Desktop, etc) with the QuantConnect API—empowering you to create projects, backtest strategies, manage collaborators, and deploy live-trading workflows directly via natura
npmBitcoin & Lightning Network MCP Server.
manualProvides AI agents with real-time cryptocurrency news and media updates sourced from CryptoPanic. It allows users to fetch multiple pages of content to track market sentiment and the latest developments in the crypto space.
npmAn MCP server that exposes the full YNAB API, allowing LLMs to read and manage budgets, accounts, and transactions through natural language. It features 49 specialized tools for comprehensive financial management, including category updates, money mo
npm🐍 🏠 - Solana blockchain data for AI agents — wallet balances, token
npmThis is an MCP server that provides access to the Alpha Vantage API, allowing stock data retrieval to be used as context to LLMs.
npm🐍 ☁️ - Coinmarket API integration to fetch cryptocurrency listings and quotes
npmOperation-first .NET foundation for generating fast CLI and MCP surfaces from a single definition.
npmZerodha MCP Server & Client - AI Agent (w/Agno & w/Google ADK)
npmA real-time financial data streaming server built with the official Model Context Protocol (MCP) C# SDK. Integrates with the FinnHub API and provides Server-Sent Events (SSE) and Standard Input/Output (STDIO) Transport to stream live financial data.
npmMCP server for 1inch cross chain swap
npmMCP server for a share financial data baostock
npmFind the best business applications MCP servers for your preferred AI client.
Business Applications servers for Claude Desktop
Business Applications servers for Claude Code CLI
Business Applications servers for Cursor
Business Applications servers for VS Code / GitHub Copilot
Business Applications servers for Windsurf
Business Applications servers for Cline
Explore other types of MCP servers.
MCP servers for secure file operations, directory management, and document processing.
MCP servers for connecting AI assistants to SQL and NoSQL databases.
MCP servers that connect AI assistants to external APIs and web services.
MCP servers for managing cloud infrastructure across AWS, Google Cloud, Azure, and platforms like Vercel, Netlify, and Cloudflare.
MCP servers for software development workflows including version control, CI/CD, code analysis, browser testing, and project management.
MCP servers for monitoring, observability, and data analytics.
MCP servers for messaging, video conferencing, and team collaboration platforms.
MCP servers for browser automation, web testing, scraping, screenshot capture, and PDF generation.
MCP servers for web search, data extraction, and content retrieval.
MCP servers for persistent memory, knowledge graphs, vector databases, and context management.
MCP servers for financial services, payment processing, trading, and cryptocurrency.
MCP servers for security monitoring, authentication, vulnerability scanning, and compliance.
MCP servers for data science, machine learning, and scientific computing.
MCP servers for version control systems including Git, GitHub, and GitLab.
MCP servers for AI coding agents, code generation, task management, and automated testing.
MCP servers for marketing automation, SEO optimization, content management, and social media.
MCP servers for monitoring, observability, and logging.
Browse our complete directory, read setup guides for your editor, and start integrating MCP into your workflow today.