- Replace basic JSON-RPC implementation with Streamable HTTP protocol - Add support for GET (SSE) and POST (JSON-RPC) requests - Update protocol version from 2024-11-05 to 2025-03-26 - Fix list_feeds tool definition to match actual API (remove unused page/pageSize params) - Add ping method support for MCP Inspector - Update Cursor configuration to use url field instead of curl command - Add comprehensive MCP integration documentation Fixes #32 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
900 B
Go
39 lines
900 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// setupRoutes 设置路由配置
|
|
func setupRoutes(appServer *AppServer) *gin.Engine {
|
|
// 设置 Gin 模式
|
|
gin.SetMode(gin.ReleaseMode)
|
|
|
|
router := gin.New()
|
|
router.Use(gin.Logger())
|
|
router.Use(gin.Recovery())
|
|
|
|
// 添加中间件
|
|
router.Use(errorHandlingMiddleware())
|
|
router.Use(corsMiddleware())
|
|
|
|
// 健康检查
|
|
router.GET("/health", healthHandler)
|
|
|
|
// MCP 端点 - 使用 Streamable HTTP 协议
|
|
mcpHandler := appServer.StreamableHTTPHandler()
|
|
router.Any("/mcp", gin.WrapH(mcpHandler))
|
|
router.Any("/mcp/*path", gin.WrapH(mcpHandler))
|
|
|
|
// API 路由组
|
|
api := router.Group("/api/v1")
|
|
{
|
|
api.GET("/login/status", appServer.checkLoginStatusHandler)
|
|
api.POST("/publish", appServer.publishHandler)
|
|
api.GET("/feeds/list", appServer.listFeedsHandler)
|
|
api.GET("/feeds/search", appServer.searchFeedsHandler)
|
|
}
|
|
|
|
return router
|
|
}
|