Skip to main content
Glama

mcp-meme-sticky

pickle_py.py617 B
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on 2025-05-19 12:41:56 Monday @author: Nikhil Kapila """ # Pickle convert to .Py # Was used as a preprocessing step, not used in the mcp server. import pickle import pprint def convert(path:str): with open(path, 'rb') as f: templates_dict = pickle.load(f) with open('templates_dict.py', 'w') as f: f.write("# Templates dictionary converted from pickle\n\n") f.write("templates = ") f.write(pprint.pformat(templates_dict, indent=4)) f.write("\n") print("Conversion complete. Check templates_dict.py")

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/nkapila6/mcp-meme-sticky'

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