mcp-system-info
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., "@mcp-system-infowhat's my public IP?"
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.
MCP System Info Server
A simple Model Context Protocol server that provides system information and public IP lookup tools for Claude Code.
Features
Tools
get_public_ip: Get your public IP address with geolocation info (country, city, ISP, timezone)get_system_info: Get local system information (OS, CPU, memory, uptime)
Resources
system://info: Static resource with current system information
Related MCP server: MCP AI Chat LangChain
Installation
npm install
npm run buildUsage with Claude Code
Via CLI (recommended)
claude mcp add system-info node /path/to/mcp-demo/dist/index.jsManual configuration
Add to your ~/.claude.json:
{
"mcpServers": {
"system-info": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/mcp-demo/dist/index.js"],
"env": {}
}
}
}Reload your IDE/Claude Code, and you can now ask:
"What's my public IP?"
"Give me system information"
"Where am I connected from?"
How it works
┌─────────────┐ JSON-RPC ┌─────────────┐
│ Claude Code │ ────────────────────────> │ MCP Server │
│ (Client) │ stdio (stdin/stdout) │ (this repo) │
│ │ <──────────────────────── │ │
└─────────────┘ └─────────────┘
│
↓
┌──────────────┐
│ ipify API │
│ ip-api.com │
│ Node.js os │
└──────────────┘The server implements the MCP protocol to:
Expose available tools via
tools/listExecute tool calls via
tools/callExpose resources via
resources/listandresources/read
Development
Project structure
mcp-demo/
├── src/
│ └── index.ts # MCP server implementation
├── dist/ # Compiled JavaScript
├── package.json
└── tsconfig.jsonModifying the server
Edit
src/index.tsRun
npm run buildReload Claude Code (Cmd+Shift+P → "Reload Window")
Testing manually
# List available tools
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | node dist/index.js
# Call a tool
echo '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_public_ip","arguments":{}}}' | node dist/index.jsDependencies
@modelcontextprotocol/sdk: Official MCP SDKaxios: HTTP client for API callsos: Native Node.js module for system info
Extending
To add a new tool:
Add tool definition in
ListToolsRequestSchemahandlerImplement tool logic in
CallToolRequestSchemahandler
Example:
// 1. Add to tool list
{
name: "get_weather",
description: "Get current weather",
inputSchema: {
type: "object",
properties: {
city: { type: "string" }
},
required: ["city"]
}
}
// 2. Handle the call
if (name === "get_weather") {
const { city } = request.params.arguments;
const response = await axios.get(`https://api.weather.com/${city}`);
return {
content: [{ type: "text", text: JSON.stringify(response.data) }]
};
}License
MIT
Resources
This server cannot be installed
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/nicolasvarrotfasst/mcp-system-info'
If you have feedback or need assistance with the MCP directory API, please join our Discord server