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.
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.
go install github.com/nguyenvanduocit/all-in-one-model-context-protocol@latest
.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=
{
"mcpServers": {
"my_mcp_server": {
"command": "all-in-one-model-context-protocol",
"args": ["-env", "/path/to/.env"],
}
}
}
Control which tool groups are enabled using the ENABLE_TOOLS
environment variable:
ENABLE_TOOLS=gemini,fetch,confluence,jira
Available tool groups:
gemini
: Gemini-powered searchfetch
: Fetch toolsconfluence
: Confluence toolsyoutube
: YouTube toolsjira
: Jira toolsgitlab
: GitLab toolsscript
: Script toolsrag
: RAG toolsdeepseek
: Deepseek AI toolsLeave empty to enable all tools.
calendar_create_event
calendar_list_events
calendar_update_event
calendar_respond_to_event
gmail_search
gmail_move_to_spam
gmail_create_filter
gmail_list_filters
gmail_list_labels
gmail_delete_filter
gmail_delete_label
gchat_list_spaces
gchat_send_message
confluence_search
confluence_get_page
confluence_create_page
confluence_update_page
jira_get_issue
jira_search_issue
jira_list_sprints
jira_create_issue
jira_update_issue
jira_list_statuses
jira_transition_issue
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
get_web_content
ai_web_search
web_search
youtube_transcript
youtube_update_video
youtube_get_video_details
youtube_list_videos
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
deepseek_reasoning
sequentialthinking
execute_comand_line_script
tool_manager
tool_use_plan
ai_web_search:
question: "What are the latest developments in quantum computing?"
context: "Researching technological advancements for a presentation"
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"
gitlab_get_project:
project_path: "organization/repository-name"
tool_manager:
action: "list"
tool_manager:
action: "disable"
tool_name: "execute_comand_line_script"
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.
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.
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"
]
}
}
}
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.
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.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.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