mirror of
https://github.com/langgenius/dify.git
synced 2025-11-10 16:32:46 +00:00
27 lines
462 B
Python
27 lines
462 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
|
|
|
|
api.add_namespace(mcp_ns)
|
|
|
|
__all__ = [
|
|
"api",
|
|
"bp",
|
|
"mcp",
|
|
"mcp_ns",
|
|
]
|