Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Reddit MCP
Claim
by
GridfireAI
GitHub
Python
MIT License
6
Apple
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
reddit-mcp
scripts
scripts/dump_schemas.py
from reddit_mcp.tools import tools from pydantic import TypeAdapter import json def main(): schemas = {tool.__name__: TypeAdapter(tool).json_schema() for tool in tools} print(json.dumps(schemas, indent=2)) if __name__ == "__main__": main()
ID: braoypt6vc