Initial commit: HA Voice Control MCP server
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from mcp.server import Server
|
||||
s = Server("test")
|
||||
# Check for tool registration methods
|
||||
methods = [m for m in dir(s) if 'tool' in m.lower()]
|
||||
print("Tool-related methods:", methods)
|
||||
# Check type
|
||||
print("Type:", type(s))
|
||||
# Check available decorators/functions
|
||||
all_attrs = [m for m in dir(s) if not m.startswith('_')]
|
||||
print("Public attrs:", all_attrs[:30])
|
||||
Reference in New Issue
Block a user