ai-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ai-mcpWhat is your computer's OS?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ai-mcp
Lightweight MCP server for agent, register tools.
Overview
This project creates minimal MCP services that expose small tools (examples: system info, weather lookup) and run them via standard input/output. It is intended as a reference for wiring functions into MCP FastMCP instances.
Files
system_information_mcp.py— implement system information MCP and register toolget_system_info.weather_mcp.py— implement weather MCP and register tools to get weather info using the U.S. National Weather Service API.pyproject.toml— project metadata and dependencies..python-version— recommended Python version (3.12).
Requirements
Python 3.12
Recommended: use a virtual environment
Configuration agent
Configure MCP server in Cline
"system information mcp": {
"disabled": false,
"timeout": 60,
"type": "stdio",
"command": "uv",
"args": [
"--directory",
"D:/YJWANG/workspace/code/ai/ai-mcp",
"run",
"system_information_mcp.py"
]
},
"weather mcp": {
"disabled": false,
"timeout": 60,
"type": "stdio",
"command": "uv",
"args": [
"--directory",
"D:/YJWANG/workspace/code/ai/ai-mcp",
"run",
"weather_mcp.py"
]
}You should change the path according to your envrionment.
Run
System info MCP:
uv run system_information_mcp.pyWeather MCP (weather_mcp.py):
uv run weather_mcp.pyEach script creates a FastMCP instance, registers one or more tools, and runs in stdio mode. Use your MCP-compatible client or protocol over stdio to call the registered tools.
Then, you can ask questions in agent, such as Cline
How about tomorrow weather in Regina, SKWhat is your computer's OS?This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/wangyj641/ai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server