MCP server providing encoding, geolocation, generator, datetime, and security tools
npm install @missionsquad/mcp-helper-toolsbased on toolkit-mcp-server


![Version]()

![Status]()

A Model Context Protocol server providing LLM Agents with system utilities and tools, including IP geolocation, network diagnostics, system monitoring, cryptographic operations, and QR code generation.
The Model Context Protocol (MCP) enables communication between:
- Clients: Claude Desktop, IDEs, and other MCP-compatible clients
- Servers: Tools and resources for task management and automation
- LLM Agents: AI models that leverage the server's capabilities
- Features
- Installation
- Configuration
- Tools
- Contributing
- License
``bashUsing npm (recommended)
npm install @cyanheads/toolkit-mcp-server
Configuration
Add to your MCP client settings:
`json
{
"mcpServers": {
"toolkit": {
"command": "node",
"args": ["node_modules/@cyanheads/toolkit-mcp-server/build/index.js"],
"env": {
"NODE_ENV": "production"
}
}
}
}
`Tools
$3
`typescript
// Get geolocation data
const geo = await mcp.use('toolkit-mcp-server', 'geolocate', {
query: '8.8.8.8'
});// Check connectivity
const conn = await mcp.use('toolkit-mcp-server', 'checkConnectivity', {
host: 'example.com',
port: 443
});
`$3
`typescript
// Get system information
const sysInfo = await mcp.use('toolkit-mcp-server', 'getSystemInfo', {});// Get load average
const load = await mcp.use('toolkit-mcp-server', 'getLoadAverage', {});
`$3
`typescript
// Generate hash
const hash = await mcp.use('toolkit-mcp-server', 'hashData', {
input: 'test data',
algorithm: 'sha256'
});// Generate UUID
const uuid = await mcp.use('toolkit-mcp-server', 'generateUUID', {});
`$3
`typescript
// Generate QR code
const qr = await mcp.use('toolkit-mcp-server', 'generateQRCode', {
data: 'https://example.com',
type: 'svg'
});
`Contributing
1. Fork the repository
2. Create your feature branch (
git checkout -b feature/amazing-feature)
3. Commit your changes (git commit -m 'Add some amazing feature')
4. Push to the branch (git push origin feature/amazing-feature`)Apache License 2.0. See LICENSE for more information.
---