# python_computer_info_mcp **Repository Path**: alan-ding/python_computer_info_mcp ## Basic Information - **Project Name**: python_computer_info_mcp - **Description**: 获取computer信息的mcp server - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-12 - **Last Updated**: 2025-10-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## config studio mcp ``` { "mcpServers": { "get-computer-info": { "command": "uv", "args": [ "--directory", "D:\\projects\\python_computer_info_mcp", "run", "main.py" ] } } } ``` ![alt text](snapshots/image.png) ## run http mcp ``` from computer import mcp def main(): print("Hello from python-computer-info-mcp!") # Run the MCP server with streamable-http mcp.run(transport="streamable-http") # Run the MCP server with sse mcp.run(transport="sse") # Run the MCP server with studio # mcp.run(transport="stdio") if __name__ == "__main__": main() ``` ![alt text](snapshots/image1.png)