R
Remote Agents
Run tunshell-based remote shell agents accessible to MCP-compatible AI clients.
Share:
About
Run tunshell-based remote shell agents accessible to MCP-compatible AI clients.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Remote Agents.
- What is the primary function of the Remote Agents MCP?
- The Remote Agents MCP provides tunshell-based remote shell agents. These agents enable MCP-compatible AI clients to access and interact with remote shell environments.
- How can I install Remote Agents in a popular MCP client like Cursor?
- Specific installation steps for Cursor depend on the client's MCP integration method. Generally, you would configure the client to communicate with the Remote Agents server for stdio transport.
- Does Remote Agents require an API key or other credentials for authentication?
- No, the Remote Agents MCP uses a 'none' authentication type. This means it does not require an API key, OAuth, or other credentials for access.
- What capabilities does the Remote Agents MCP expose to AI clients?
- The Remote Agents MCP exposes remote shell capabilities. This allows AI clients to execute commands and manage a shell environment as if they were interacting directly with the remote system.
- What is the licensing model for Remote Agents?
- The licensing model for Remote Agents is not specified in the provided information. Refer to the project repository at https://github.com/47-ronn/tunshellmcpagents for licensing details.
- Are there any known limitations or prerequisites for using Remote Agents?
- A key prerequisite for Remote Agents is the underlying tunshell dependency. Its functionality relies on a working tunshell setup for establishing and managing remote shell sessions.
Install Remote Agents
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"remote-agents": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-remote-agents"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"remote-agents": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-remote-agents"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"remote-agents": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-remote-agents"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.