Chapter 01 · MongoDB Atlas Stream Processing
Subchapter 1.3
references/mcp-troubleshooting.mdMarkdown2 KBView on GitHub
This skill requires the MongoDB MCP Server with Atlas Stream Processing tools enabled. If these tools are unavailable, follow the diagnostic steps below.
Check if the MongoDB MCP Server is connected to your environment.
If not connected:
apiClientId and apiClientSecret)Check that all four streams tools are available:
atlas-streams-discoveratlas-streams-buildatlas-streams-manageatlas-streams-teardownIf you cannot configure the MCP server immediately, you have limited alternatives:
Use Atlas CLI API commands for exploration only:
atlas api streams listStreamWorkspaces --projectId <project-id>
atlas api streams getStreamWorkspace --workspaceName <workspace-name> --projectId <project-id>Limitations:
Use sp.process() in mongosh for ephemeral pipeline testing:
sp.process([
{ $source: { connectionName: "sample_stream_solar" } },
{ $match: { temperature: { $gt: 50 } } },
{ $limit: 10 }
])Limitations:
For full Atlas Stream Processing capabilities, configure the MongoDB MCP Server with streams preview features enabled. The fallback options above provide minimal functionality and are not suitable for production workflows.