NEXT Configuration MCP Server
The NEXT Configuration MCP Server lets MCP-compatible clients such as Claude and Codex inspect and configure a NEXT teamspace. You can use natural-language instructions to create tagging jobs and workflows while NEXT validates the configuration before saving it.
Get a teamspace API token
-
Create a new API token in NEXT.
-
Provide the generated token to your MCP client in the
Authorizationheader:Authorization: Bearer <api_token>
Teamspace API tokens are scoped to one teamspace. The MCP server cannot read or change configuration in another teamspace. Create separate tokens for different teamspaces or purposes, and rotate or revoke a token from the same settings page if it is exposed.
Endpoint and transport
The hosted Configuration MCP Server is available at:
https://rest.eu-west-1.nextapp.co/config-mcp
It uses the MCP Streamable HTTP transport in stateless JSON-response mode:
- Send MCP requests with HTTP
POST. - Set
Content-Type: application/json. - Set
Accept: application/json, text/event-streamfor compatibility with MCP clients. - The endpoint does not use persistent sessions or a standalone SSE connection.
Your MCP client should send the API token on every request.
Available capabilities
The Configuration MCP Server lets AI clients inspect and manage configuration within a NEXT teamspace.
It currently supports:
- Tagging: Inspect and configure automatic AI- and search-based tagging of memories.
- Workflows: Inspect, design, validate, and create NEXT workflows.
The server provides validation capabilities so clients can check proposed configuration before making changes.
Available tools and their authoritative descriptions and schemas are exposed
through MCP tool discovery. Clients should use tools/list rather than relying
on documentation for individual tools or parameters.
Troubleshooting
- HTTP 401: Check that the client sends
Authorization: Bearer <api_token>on every request. Confirm that the configured token has not been revoked and belongs to the intended teamspace. Restart the MCP client after changing an environment variable or token in its configuration. - A validation tool returns errors: Let the client correct the reported fields, connections, or references, then validate again before creation.
- A creation tool reports a server error after validation succeeds: Do not repeatedly submit the request. Report the returned error code and message to NEXT support so the server-side failure can be investigated.