All-In-One DevTools MCP server

Juggles development tool integrations like Confluence, GitLab, Jira, and CLI scripts.
Back to servers
Setup instructions
Provider
Duoc Nguyen
Release date
Dec 12, 2024
Language
Go
Stats
86 stars

The Model Context Protocol Server provides an extensive toolkit for integrating various services like GitLab, Jira, Confluence, YouTube, and Google Workspace with AI capabilities. It enables powerful search features and workflow automation through a standardized protocol interface.

Installation Options

Via Smithery (Recommended)

Install the MCP Server through Smithery with interactive setup:

npx -y @smithery/cli install @nguyenvanduocit/all-in-one-model-context-protocol --client claude

Smithery will guide you through the configuration process, prompting for necessary values and automatically setting up your environment.

Via Go

  1. Install using Go:
go install github.com/nguyenvanduocit/all-in-one-model-context-protocol@latest
  1. Create a .env file with your configuration:
ENABLE_TOOLS=
QDRANT_HOST=
ATLASSIAN_HOST=
ATLASSIAN_EMAIL=
GITLAB_HOST=
GITLAB_TOKEN=
BRAVE_API_KEY=
ATLASSIAN_TOKEN=
GOOGLE_AI_API_KEY=
PROXY_URL=
OPENAI_API_KEY=
DEEPSEEK_API_KEY=
QDRANT_PORT=
GOOGLE_TOKEN_FILE=
GOOGLE_CREDENTIALS_FILE=
QDRANT_API_KEY=
  1. Configure your Claude's config:
{
  "mcpServers": {
    "my_mcp_server": {
      "command": "all-in-one-model-context-protocol",
      "args": ["-env", "/path/to/.env"],
    }
  }
}

Configuration

Required Secrets

  • GOOGLE_TOKEN_FILE: Used for Google AI services like Gemini, Google Search, and Google Calendar
  • GOOGLE_CREDENTIALS_FILE: Service account for advanced features like Google Chat (requires Google Cloud project setup and chat bot creation)

Enabling Tools

Control which tool groups are enabled using the ENABLE_TOOLS environment variable:

ENABLE_TOOLS=gemini,fetch,confluence,jira

Available tool groups:

  • gemini: Gemini-powered search
  • fetch: Fetch tools
  • confluence: Confluence tools
  • youtube: YouTube tools
  • jira: Jira tools
  • gitlab: GitLab tools
  • script: Script tools
  • rag: RAG tools
  • deepseek: Deepseek AI tools

Leave empty to enable all tools.

Available Tools

Google Workspace Tools

Calendar Management

calendar_create_event
calendar_list_events
calendar_update_event
calendar_respond_to_event

Gmail Management

gmail_search
gmail_move_to_spam
gmail_create_filter
gmail_list_filters
gmail_list_labels
gmail_delete_filter
gmail_delete_label

Google Chat

gchat_list_spaces
gchat_send_message

Atlassian Tools

Confluence

confluence_search
confluence_get_page
confluence_create_page
confluence_update_page

Jira

jira_get_issue
jira_search_issue
jira_list_sprints
jira_create_issue
jira_update_issue
jira_list_statuses
jira_transition_issue

GitLab Tools

gitlab_list_projects
gitlab_get_project
gitlab_list_mrs
gitlab_get_mr_details
gitlab_create_MR_note
gitlab_get_file_content
gitlab_list_pipelines
gitlab_list_commits
gitlab_get_commit_details
gitlab_list_user_events
gitlab_list_group_users
gitlab_create_mr

Web and Search Tools

get_web_content
ai_web_search
web_search

YouTube Tools

youtube_transcript
youtube_update_video
youtube_get_video_details
youtube_list_videos

RAG Memory Tools

RAG_memory_index_content
RAG_memory_index_file
RAG_memory_create_collection
RAG_memory_delete_collection
RAG_memory_list_collections
RAG_memory_search
RAG_memory_delete_index_by_filepath

Advanced AI Tools

deepseek_reasoning
sequentialthinking

System Tools

execute_comand_line_script
tool_manager
tool_use_plan

Tool Usage Examples

Searching with Google AI

ai_web_search:
  question: "What are the latest developments in quantum computing?"
  context: "Researching technological advancements for a presentation"

Creating a Jira Issue

jira_create_issue:
  project_key: "PROJ"
  summary: "Fix login page authentication bug"
  description: "Users are occasionally getting logged out during form submission"
  issue_type: "Bug"

Retrieving GitLab Project Information

gitlab_get_project:
  project_path: "organization/repository-name"

Managing Tool Availability

tool_manager:
  action: "list"
tool_manager:
  action: "disable"
  tool_name: "execute_comand_line_script"

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "my_mcp_server" '{"command":"all-in-one-model-context-protocol","args":["-env","/path/to/.env"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "my_mcp_server": {
            "command": "all-in-one-model-context-protocol",
            "args": [
                "-env",
                "/path/to/.env"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "my_mcp_server": {
            "command": "all-in-one-model-context-protocol",
            "args": [
                "-env",
                "/path/to/.env"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later