14 pointsby justvugg6 hours ago1 comment
  • rahimnathwanian hour ago
    If you want people to adopt your tool, you may need to explain any advantage this has over fastmcp.

    It's already easy to expose a python function as an MCP server. From the fastmcp docs:

      from fastmcp import FastMCP
      
      mcp = FastMCP("Demo ")
      
      @mcp.tool
      def add(a: int, b: int) -> int:
          """Add two numbers"""
          return a + b
      
      if __name__ == "__main__":
          mcp.run()