AIO-MCP Server
🚀 All-in-one MCP server with AI search, RAG, and multi-service integrations (GitLab/Jira/Confluence/YouTube) for AI-enhanced development workflows. Folk from
Overview
AIO-MCP Server is an all-in-one Model Context Protocol (MCP) server designed to enhance development workflows through AI-powered search and integrations with services like GitLab, Jira, Confluence, and YouTube.
To use AIO-MCP Server, you can install it via Smithery for an interactive setup or manually configure it using Go. Ensure you have the necessary API keys and tokens for the services you wish to integrate.
- AI-powered search capabilities for efficient information retrieval. - Integration with popular development tools like GitLab, Jira, and Confluence. - Support for various utility tools to streamline development workflows.
- Automating project management tasks using Jira and GitLab integrations.
- Enhancing documentation processes with Confluence.
- Utilizing AI for advanced search and data retrieval from multiple sources.
Add to your AI client
Use these steps to connect AIO-MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"aio-mcp-athapong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aio-mcp-athapong"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"aio-mcp-athapong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aio-mcp-athapong"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"aio-mcp-athapong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aio-mcp-athapong"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"aio-mcp-athapong": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aio-mcp-athapong"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"aio-mcp-athapong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aio-mcp-athapong"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"aio-mcp-athapong": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aio-mcp-athapong"
]
}
}
}FAQ
What programming language is AIO-MCP Server built with?
AIO-MCP Server is built using Go.
Is there a specific version of Go required?
Yes, Go version 1.23.2 or higher is required.
Can I use AIO-MCP Server for free?
Yes, AIO-MCP Server is open-source and free to use.