Planned integration for accessing and managing Confluence spaces and documentation.
Planned integration for managing Discord servers as part of the communication platform roadmap.
Planned integration for repository management, enabling users to fetch assigned issues, track pull requests, and search for issues.
Planned integration for managing tasks and projects within the Jira platform.
Provides tools for managing Linear issues, assignments, and search functionality, including fetching assigned items and viewing detailed issue information.
Planned integration for managing Notion databases and pages, allowing users to query content and search for documentation.
Planned integration for interacting with Obsidian vaults to manage personal knowledge bases.
Planned integration for accessing Slack messages, navigating threads, and performing workspace searches.
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., "@MCP-GETlist my open issues from Linear and GitHub"
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.
MCP-GET
A flexible Model Context Protocol server for accessing multiple task management and productivity services. MCP-GET provides a unified interface for AI assistants to interact with popular workplace tools through a consistent, extensible architecture.
About the Model Context Protocol
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. Developed by Anthropic, MCP provides a standardized way for AI systems to access real-time information and perform actions across different services.
Key Resources:
Setup
Install dependencies:
npm installConfigure your services in the
.envfile:# Linear (currently supported) # Get your API key: https://linear.app/settings/api LINEAR_API_KEY=your_linear_api_key_here LINEAR_ENABLED=true # Notion # Create integration: https://developers.notion.com/docs/create-a-notion-integration NOTION_API_KEY=your_notion_integration_token NOTION_ENABLED=true # Slack # Create app: https://api.slack.com/apps SLACK_BOT_TOKEN=xoxb-your-slack-bot-token SLACK_ENABLED=true # GitHub # Generate token: https://github.com/settings/tokens GITHUB_API_KEY=your_github_personal_access_token GITHUB_ENABLED=true # Plaid # Get credentials: https://dashboard.plaid.com/developers/keys PLAID_CLIENT_ID=your_plaid_client_id PLAID_SECRET=your_plaid_secret_key PLAID_ENV=sandbox # or development, production PLAID_ENABLED=trueRun the server:
npm start
Available Tools
Linear Service
linear_get_my_issues: Get recent issues assigned to you from Linearlinear_get_issue_details: Get detailed information about a specific Linear issuelinear_search_issues: Search for Linear issues by title or description
Notion Service (Planned)
notion_get_my_pages: Get recent pages you have access tonotion_get_page_details: Get detailed information about a specific pagenotion_search_pages: Search for pages by title or content
Slack Service (Planned)
slack_get_my_messages: Get recent messages from your conversationsslack_get_thread_details: Get detailed information about a specific threadslack_search_messages: Search for messages by content or user
GitHub Service (Planned)
github_get_my_issues: Get recent issues assigned to yougithub_get_issue_details: Get detailed information about a specific issuegithub_search_issues: Search for issues by title or description
Plaid Service (Planned)
plaid_get_accounts: Get linked bank accounts and balancesplaid_get_transactions: Get recent transactions across accountsplaid_search_transactions: Search transactions by merchant, amount, or description
Architecture
MCP-GET uses a service-based architecture that makes it easy to add new productivity services:
Each service implements the same interface:
getMyIssues(limit): Get user's assigned itemsgetIssueDetails(id): Get detailed item informationsearchIssues(query, limit): Search items by text
Integration with AI Assistants
MCP-GET integrates seamlessly with AI assistants that support the Model Context Protocol:
Claude Code
Claude Code is Anthropic's official CLI tool that supports MCP servers. Add MCP-GET to your Claude Code configuration to access multiple productivity services directly in your conversations.
Claude Code Resources:
Configuration Example
Other Compatible AI Assistants
Cline - VS Code extension with MCP support
Continue - AI coding assistant with MCP integration
Custom implementations using the MCP SDK
Benefits
Unified Interface: Consistent command patterns across all services
Contextual Awareness: AI assistants can cross-reference data between services
Productivity Enhancement: Streamlined workflows without switching between tools
Extensible Architecture: Easy to add new services as your workflow evolves
Adding New Services
Create a new service file in
services/(e.g.,jira.js)Extend the
BaseServiceclassImplement the required methods
Add the service to the registry in
services/index.jsAdd configuration in
config.js
See services/linear.js for a complete example.
Development Resources:
Supported Services
Currently Available:
Linear: Full support for issues, assignments, and search functionality
Planned Integration:
Notion: Database queries, page management, and content search
Slack: Message retrieval, thread navigation, and workspace search
GitHub: Issues, pull requests, and repository management
Plaid: Banking data access, transaction history, and account management
Development Roadmap
MCP-GET is designed to become the definitive MCP server for workplace productivity tools. Our development roadmap includes:
Phase 1: Core Services (Current)
Linear integration (Complete)
GitHub Issues and Pull Requests
Plaid financial data access
Phase 2: Communication Platforms
Slack workspace integration
Microsoft Teams connectivity
Discord server management
Phase 3: Knowledge Management
Notion database and page access
Confluence space management
Obsidian vault integration
Phase 4: Financial & Analytics
Enhanced Plaid transaction analysis
Banking workflow automation
Financial reporting and insights
Contributing
We welcome contributions to expand service support and improve functionality. To add support for a new service:
Create a service class extending
BaseServicein theservices/directoryImplement required methods following the established interface pattern
Add configuration options to
config.jswith appropriate environment variablesUpdate the service registry in
services/index.jsAdd comprehensive tests and update documentation
Code Quality Standards
Follow existing architectural patterns
Implement proper error handling and logging
Maintain consistent API response formats
Include comprehensive JSDoc documentation
API Documentation
Service API References
MCP Development Resources
Support and Community
Issues: Report bugs and request features on GitHub Issues
Discussions: Join the conversation in GitHub Discussions
MCP Community: Connect with other developers in the MCP Discord
Anthropic Support: Get help with Claude Code at Anthropic Support
License
MIT License - see LICENSE for details.