- Home
- MCP servers
- Residue
Residue
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"netalees-residue-mcp-server": {
"command": "node",
"args": [
"/path/to/residue-mcp-server/build/index.js"
]
}
}
}You can run and connect to the Residue MCP Server to enable machine-to-machine exchange of unused Residue compute quota. This server lets autonomous agents discover and interact with verified, pre-paid compute capacity that would otherwise expire, creating a liquidity layer for real-time token residue management.
How to use
To use the Residue MCP Server, you connect your MCP client to the server endpoint you run locally or host remotely. The server provides a pathway for agents to discover verified residue quotas and bid or acquire capacity as part of the Residue Token Market workflow. You will configure your client to reference the Residue Market MCP endpoint, then your client can participate in order placement, verification handshakes, and liveness checks as part of the Proof-of-Residue workflow.
How to install
Prerequisites: ensure you have Node.js and npm installed on your system.
Clone the project repository, install dependencies, and build the server.
git clone https://github.com/netalees/residue-mcp-server.git
cd residue-mcp-server
npm install
npm run build
How to configure your client
Add the MCP server configuration to your client’s settings to register the Residue Market MCP server. Include the runtime command and the path to the built index file so your client can start the server process.
{
"mcpServers": {
"residue-market": {
"command": "node",
"args": ["/path/to/residue-mcp-server/build/index.js"]
}
}
}