jaringan-mcp
Allows Hermes agents to fetch, inspect, search, and manage Jaringan pages.
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., "@jaringan-mcpfetch the JRG page about networking"
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.
jaringan-mcp
MCP (Model Context Protocol) server for the Jaringan (JRG) protocol. Lets AI agents fetch, inspect, search, and manage Jaringan pages through structured tool calls.
Install
npm install jaringan-mcpRelated MCP server: mcp-toolkit
Usage
Standalone
npm install jaringan-mcp
# Connect to a JRG server on localhost:7080
npx jaringan-mcp --jrg-port 7080
# Read from local .jrg files instead
npx jaringan-mcp --file-root ~/wiki
# Custom host/port with browser binary
npx jaringan-mcp --jrg-host 10.0.0.1 --jrg-port 7070 --browser /usr/bin/jaringan-browserWith Hermes Agent
Add to ~/.hermes/config.yaml:
mcp_servers:
jaringan:
command: "npx"
args: ["-y", "jaringan-mcp", "--jrg-port", "7080"]Or for local file access:
mcp_servers:
jaringan:
command: "npx"
args: ["-y", "jaringan-mcp", "--file-root", "/home/user/wiki"]Restart Hermes to auto-discover the tools.
With Claude Code / Copilot / Any MCP Host
{
"mcpServers": {
"jaringan": {
"command": "npx",
"args": ["-y", "jaringan-mcp", "--jrg-port", "7080"]
}
}
}Tools
Tool | Description |
| Fetch a JRG page → structured content (title, body, tags, links) |
| Fetch raw JRG protocol response (status, headers, body) |
| Inspect a page → JSON manifest of interactive elements |
| Search local |
| List all stored Jaringan authentication tokens |
| Render a page as formatted plain text |
| List all available Jaringan pages (slug + title) |
Options
Flag | Default | Description |
|
| JRG TCP server hostname |
|
| JRG TCP server port |
| — | Read from local |
|
| Path to |
|
| TCP connection timeout in ms |
Architecture
AI Agent (Hermes, Claude Code, etc.)
│
│ MCP protocol (JSON-RPC over stdio)
▼
┌─────────────────────────────┐
│ jaringan-mcp server │
│ │
│ ┌───────────────────────┐ │
│ │ jrg-client (lib) │──│── TCP → JRG server (port 7070/7080)
│ └───────────────────────┘ │
│ ┌───────────────────────┐ │
│ │ jaringan-browser CLI │──│── inspect / search / auth
│ └───────────────────────┘ │
│ ┌───────────────────────┐ │
│ │ Local file reader │──│── .jrg files on disk
│ └───────────────────────┘ │
└─────────────────────────────┘Publishing
npm run build
npm publish --access publicLicense
MIT
Maintenance
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/thesimonharms/jaringan-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server