Skip to main content
Glama
by noahw345
server.py586 B
"""MCP server entry point for Claude Desktop.""" import sys from mcp.server.fastmcp import FastMCP from .tools.property_info_tool import get_property_info # Initialize MCP server mcp = FastMCP(name="property-mcp-server") # Register single tool mcp.tool( name="get_property_info", description="Fetch property details from ATTOM given a full address.", )(get_property_info) # Run in stdio mode for Claude Desktop if __name__ == "__main__": try: mcp.run() except Exception as e: print(f"Error starting server: {e}", file=sys.stderr) sys.exit(1)

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/noahw345/property-MCP'

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