Skip to main content
Glama
kltng

LCSH MCP Server

by kltng
cli.py800 B
""" Command-line interface for cataloger mcp server. This module provides the entry point for the command-line interface. """ import sys import argparse from .server import start_mcp_server def main(): """Main entry point for the cataloger mcp server CLI.""" parser = argparse.ArgumentParser( description="cataloger mcp server - A Model Context Protocol server for " "Library of Congress Subject Headings" ) parser.add_argument( "--port", "-p", type=int, help="Port number for HTTP/SSE mode. If not provided, runs in stdio mode." ) args = parser.parse_args() # Run the server with the provided port (or None for stdio mode) start_mcp_server(args.port) if __name__ == "__main__": sys.exit(main())

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kltng/lcsh-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server