Skip to main content
Glama
nacos-group

Nacos MCP Server

Official
by nacos-group
__init__.py668 B
from . import server import asyncio import argparse def main(): """Main entry point for the package.""" parser = argparse.ArgumentParser(description='Nacos Server') parser.add_argument('--host', default='localhost', help='Host to connect to Nacos Server') parser.add_argument('--port', default='8848', help='Port to connect to Nacos Server') parser.add_argument('--access_token', default='', help='AccessToken to connect to Nacos Server if auth enabled') args = parser.parse_args() asyncio.run(server.main(args.host, args.port, args.access_token)) # Optionally expose other important items at package level __all__ = ["main", "server"]

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/nacos-group/nacos-mcp-server'

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