Skip to main content
Glama

SignNow MCP Server

Official
stdio_demo.py1.42 kB
import os from dotenv import dotenv_values, find_dotenv from mcp import StdioServerParameters from smolagents import ( CodeAgent, OpenAIServerModel, ToolCollection, ) def main() -> None: env_path = find_dotenv(usecwd=True) # searches upward from current cwd env = dict(os.environ) if env_path: env.update(dotenv_values(env_path)) model = OpenAIServerModel( model_id=os.environ["LLM_MODEL"], # can use "gpt-4o-mini" for cheaper api_base=os.environ["LLM_API_HOST"], api_key=os.environ["LLM_KEY"], # organization="org_...", # optional # project="proj_...", # optional ) # Start local MCP server via your CLI (STDIO mode) params = StdioServerParameters(command="sn-mcp", args=["serve"], env=env) # this is your MCP(stdio) command # pass ENV # Important: trust_remote_code=True only if you trust the server/tools with ToolCollection.from_mcp(params, trust_remote_code=True) as tcoll: agent = CodeAgent( model=model, tools=[*tcoll.tools], # all MCP server tools are available to the agent add_base_tools=False, # disable smolagents base tools max_steps=8, ) print(agent.run("Show me list of templates and its names")) if __name__ == "__main__": main() # python examples/smolagents/stdio_demo.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/mihasicehcek/sn-mcp-server'

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