Files
tkmind_go/examples/mcp-wiki/src/mcp_wiki/__init__.py
T
2025-01-27 12:36:12 -05:00

15 lines
354 B
Python

import argparse
from .server import mcp
def main():
"""MCP Wiki: read Wikipedia articles and convert them to Markdown."""
parser = argparse.ArgumentParser(
description="Gives you the ability to read Wikipedia articles and convert them to Markdown."
)
_ = parser.parse_args()
mcp.run()
if __name__ == "__main__":
main()