INDIVIDUAL MCP TOOL
dreamagent_chat
Send a build/edit/debug instruction to the project's DreamAgent AI agent.
LIVE ENDPOINT
https://mcp.dreamagent.cloud/mcp
Connect to this endpoint to inspect the live schema for dreamagent_chat and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
- A tool name or description suggests sending messages.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.dreamagent]
url = "https://mcp.dreamagent.cloud/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"dreamagent": {
"type": "http",
"url": "https://mcp.dreamagent.cloud/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: dreamagent
Remote MCP URL: https://mcp.dreamagent.cloud/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"dreamagent": {
"url": "https://mcp.dreamagent.cloud/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"dreamagent": {
"type": "http",
"url": "https://mcp.dreamagent.cloud/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "dreamagent",
"transport": "streamable-http",
"url": "https://mcp.dreamagent.cloud/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
dreamagent_list_projects— List the user's DreamAgent projects.dreamagent_list_global_integrations— List the user's saved Global Integrations (reusable credentials).dreamagent_list_project_env— List a project's environment variables with details (keys only — values are masked; secrets are never returned).dreamagent_create_project— Create a new DreamAgent project.dreamagent_get_project_status— Get a project's current status.dreamagent_list_sessions— List the chat sessions of a project (conversation threads with the project's AI agent).dreamagent_create_session— Create a new chat session (conversation thread) on a project.dreamagent_release_project_lock— Force-release a project's chat lock (last resort when edits fail with 'session locked' and the locking session is stale/closed).