3ca57986ef
* Added an initial minimal MCP server for MarkItDown * Added STDIO default option. * Added a Dockerfile, and updated the README accordingly. Also added instructions for Claude Desktop * Pin mcp version.
10 lines
178 B
Python
10 lines
178 B
Python
# SPDX-FileCopyrightText: 2024-present Adam Fourney <adamfo@microsoft.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
from .__about__ import __version__
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
]
|