We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oschina/mcp-gitee'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tool_options_handle.go•245 B
package utils
import "github.com/mark3labs/mcp-go/mcp"
func CombineOptions(options ...[]mcp.ToolOption) []mcp.ToolOption {
var result []mcp.ToolOption
for _, option := range options {
result = append(result, option...)
}
return result
}