mirror of
https://github.com/langgenius/dify.git
synced 2025-11-11 00:43:08 +00:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
20 lines
440 B
Python
20 lines
440 B
Python
from flask import Blueprint
|
|
from flask_restx import Namespace
|
|
|
|
from libs.external_api import ExternalApi
|
|
|
|
bp = Blueprint("mcp", __name__, url_prefix="/mcp")
|
|
|
|
api = ExternalApi(
|
|
bp,
|
|
version="1.0",
|
|
title="MCP API",
|
|
description="API for Model Context Protocol operations",
|
|
)
|
|
|
|
mcp_ns = Namespace("mcp", description="MCP operations", path="/")
|
|
|
|
from . import mcp # pyright: ignore[reportUnusedImport]
|
|
|
|
api.add_namespace(mcp_ns)
|