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.
Related MCP Servers
- Alicense-qualityDmaintenanceA custom Model Context Protocol server that gives Claude Desktop and other LLMs access to file system operations and command execution capabilities through standardized tool interfaces.Last updated23Apache 2.0
- Flicense-qualityDmaintenanceA basic Model Context Protocol server implementation that demonstrates core functionality including tools and resources for AI chat applications.Last updated
- Flicense-qualityDmaintenanceA server implementation for the Model Context Protocol (MCP) that allows Claude AI to execute commands through a command-line interface, enabling direct system interactions from within Claude.Last updated
- AlicenseCqualityDmaintenanceA Model Context Protocol (MCP) server that demonstrates how to build and implement custom tools for Claude using the mcp-framework.Last updated10ISC
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
A Model Context Protocol server for Wix AI tools
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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