Skip to content

Commit 1ad0d02

Browse files
authored
Merge pull request #4 from athapong/fix_web_fetch
doc: enable web_search, and doc
2 parents c418a01 + b3061ef commit 1ad0d02

File tree

4 files changed

+100
-9
lines changed

4 files changed

+100
-9
lines changed

README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
1-
# MyMCP Server
1+
# AIO-MCP Server
22

33
[![smithery badge](https://smithery.ai/badge/@athapong/aio-mcp)](https://smithery.ai/server/@athapong/aio-mcp)
44
A powerful Model Context Protocol (MCP) server implementation with integrations for GitLab, Jira, Confluence, YouTube, and more. This server provides AI-powered search capabilities and various utility tools for development workflows.
55

6-
[Tutorial](https://www.youtube.com/watch?v=XnDFtYKU6xU)
7-
8-
## Community
9-
10-
For community support, discussions, and updates, please visit our forum at [community.aiocean.io](https://community.aiocean.io/).
11-
12-
136
## Prerequisites
147

158
- Go 1.23.2 or higher
@@ -104,7 +97,7 @@ USE_OLLAMA_DEEPSEEK=
10497
```json{claude_desktop_config.json}
10598
{
10699
"mcpServers": {
107-
"my_mcp_server": {
100+
"aio-mcp": {
108101
"command": "aio-mcp",
109102
"args": ["-env", "/path/to/.env"],
110103
@@ -159,6 +152,8 @@ Here is the list of tools group:
159152

160153
- `gemini`: Gemini-powered search
161154
- `fetch`: Fetch tools
155+
- `brave_search`: Brave Search tools
156+
- `google_maps`: Google Maps tools
162157
- `confluence`: Confluence tools
163158
- `youtube`: YouTube tools
164159
- `jira`: Jira tools

go.mod

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ require (
1919
)
2020

2121
require (
22+
github.com/JohannesKaufmann/html-to-markdown v1.6.0
2223
github.com/joho/godotenv v1.5.1
2324
github.com/kbinani/screenshot v0.0.0-20250118074034-a3924b7bbc8c
2425
github.com/sergi/go-diff v1.3.1
26+
github.com/stretchr/testify v1.10.0
2527
googlemaps.github.io/maps v1.7.0
2628
)
2729

@@ -32,6 +34,8 @@ require (
3234
cloud.google.com/go/compute/metadata v0.6.0 // indirect
3335
dario.cat/mergo v1.0.1 // indirect
3436
github.com/JohannesKaufmann/dom v0.2.0 // indirect
37+
github.com/PuerkitoBio/goquery v1.9.2 // indirect
38+
github.com/andybalholm/cascadia v1.3.3 // indirect
3539
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3640
github.com/dlclark/regexp2 v1.10.0 // indirect
3741
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -49,6 +53,7 @@ require (
4953
github.com/jezek/xgb v1.1.1 // indirect
5054
github.com/lxn/win v0.0.0-20210218163916-a377121e959e // indirect
5155
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
56+
github.com/stretchr/objx v0.5.2 // indirect
5257
github.com/tidwall/match v1.1.1 // indirect
5358
github.com/tidwall/pretty v1.2.1 // indirect
5459
go.opencensus.io v0.24.0 // indirect
@@ -65,4 +70,5 @@ require (
6570
google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
6671
google.golang.org/grpc v1.70.0 // indirect
6772
google.golang.org/protobuf v1.36.5 // indirect
73+
gopkg.in/yaml.v3 v3.0.1 // indirect
6874
)

0 commit comments

Comments
 (0)