mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-20 02:55:08 +08:00
* fix: clarify missing MCP stdio command errors * refactor: tighten MCP error presentation helpers * fix: improve MCP test connection feedback * fix: structure MCP test connection errors * refactor: share MCP test error codes
10 lines
198 B
Python
10 lines
198 B
Python
from .mcp_test_connection_error_codes import (
|
|
MCP_STDIO_COMMAND_NOT_FOUND,
|
|
MCP_TEST_CONNECTION_FAILED,
|
|
)
|
|
|
|
__all__ = [
|
|
"MCP_STDIO_COMMAND_NOT_FOUND",
|
|
"MCP_TEST_CONNECTION_FAILED",
|
|
]
|