Skip to main content
Glama

mcp-vegalite-server

from . import server import asyncio import argparse def main(): """Main entry point for the package.""" parser = argparse.ArgumentParser(description="Data Visualization MCP Server") # parser.add_argument( # "--language", default="vegalite", choices=["vegalite"], help="The visualization language/grammar/framework to use" # ) parser.add_argument("--output-type", default="png", choices=["text", "png"], help="Format of the output") args = parser.parse_args() asyncio.run(server.main(output_type=args.output_type)) # Optionally expose other important items at package level __all__ = ["main", "server"]

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/isaacwasserman/mcp-vegalite-server'

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