mirror of
https://github.com/alibaba/higress.git
synced 2026-04-21 20:17:29 +08:00
96 lines
3.3 KiB
Go
96 lines
3.3 KiB
Go
// Copyright (c) 2022 Alibaba Group Holding Ltd.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package tools
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"amap-tools/config"
|
|
|
|
"github.com/alibaba/higress/plugins/wasm-go/pkg/mcp/server"
|
|
"github.com/alibaba/higress/plugins/wasm-go/pkg/mcp/utils"
|
|
)
|
|
|
|
var _ server.Tool = BicyclingRequest{}
|
|
|
|
type BicyclingRequest struct {
|
|
Origin string `json:"origin" jsonschema_description:"出发点经纬度,坐标格式为:经度,纬度"`
|
|
Destination string `json:"destination" jsonschema_description:"目的地经纬度,坐标格式为:经度,纬度"`
|
|
}
|
|
|
|
func (t BicyclingRequest) Description() string {
|
|
return "骑行路径规划用于规划骑行通勤方案,规划时会考虑天桥、单行线、封路等情况。最大支持 500km 的骑行路线规划"
|
|
}
|
|
|
|
func (t BicyclingRequest) InputSchema() map[string]any {
|
|
return server.ToInputSchema(&BicyclingRequest{})
|
|
}
|
|
|
|
func (t BicyclingRequest) Create(params []byte) server.Tool {
|
|
request := &BicyclingRequest{}
|
|
json.Unmarshal(params, &request)
|
|
return request
|
|
}
|
|
|
|
func (t BicyclingRequest) Call(ctx server.HttpContext, s server.Server) error {
|
|
serverConfig := &config.AmapServerConfig{}
|
|
s.GetConfig(serverConfig)
|
|
if serverConfig.ApiKey == "" {
|
|
return errors.New("amap API-KEY is not configured")
|
|
}
|
|
|
|
url := fmt.Sprintf("http://restapi.amap.com/v4/direction/bicycling?key=%s&origin=%s&destination=%s&source=ts_mcp", serverConfig.ApiKey, url.QueryEscape(t.Origin), url.QueryEscape(t.Destination))
|
|
return ctx.RouteCall(http.MethodGet, url,
|
|
[][2]string{{"Accept", "application/json"}}, nil, func(statusCode int, responseHeaders http.Header, responseBody []byte) {
|
|
if statusCode != http.StatusOK {
|
|
utils.OnMCPToolCallError(ctx, fmt.Errorf("bicycling call failed, status: %d", statusCode))
|
|
return
|
|
}
|
|
var response struct {
|
|
Errcode int `json:"errcode"`
|
|
Data struct {
|
|
Origin string `json:"origin"`
|
|
Destination string `json:"destination"`
|
|
Paths []struct {
|
|
Distance string `json:"distance"`
|
|
Duration string `json:"duration"`
|
|
Steps []struct {
|
|
Instruction string `json:"instruction"`
|
|
Road string `json:"road"`
|
|
Distance string `json:"distance"`
|
|
Orientation string `json:"orientation"`
|
|
Duration string `json:"duration"`
|
|
} `json:"steps"`
|
|
} `json:"paths"`
|
|
} `json:"data"`
|
|
}
|
|
err := json.Unmarshal(responseBody, &response)
|
|
if err != nil {
|
|
utils.OnMCPToolCallError(ctx, fmt.Errorf("failed to parse bicycling response: %v", err))
|
|
return
|
|
}
|
|
if response.Errcode != 0 {
|
|
utils.OnMCPToolCallError(ctx, fmt.Errorf("bicycling failed: %v", response))
|
|
return
|
|
}
|
|
result, _ := json.MarshalIndent(response.Data.Paths, "", " ")
|
|
utils.SendMCPToolTextResult(ctx, string(result))
|
|
})
|
|
}
|