This guide explains how to use Postman to test and interact with the Atoti MCP server.Documentation Index
Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
Use this file to discover all available pages before exploring further.
Why connect with Postman?
Using Postman to connect to the MCP server provides several benefits:- Test MCP server configuration and availability
- Validate tool discovery and execution
- Explore available tools and their parameters
- Debug integration issues
- Test custom tools during development
Prerequisites
Before connecting with Postman, ensure the following requirements are met:- Atoti MCP server is set up and running
- Postman is installed (desktop or web version)
- Atoti application credentials (username and password)
- The MCP server endpoint URL (typically
http://localhost:PORT/sse)
Configure authentication
Set up authentication in Postman to access the MCP server. Follow these steps:- Open Postman
- Create a new request
- Select the Authorization tab
- Choose “Basic Auth” as the type and enter the Atoti username and password, or choose “Bearer Token” and paste a token generated from the MCP credentials page.
Discover available tools
Make a request to the MCP server to discover available tools. The following example shows a request to list tools:
Make tool requests
After discovering available tools, make requests to execute specific tools. Configure the request with the following components:- Method: POST
- URL: The MCP server endpoint
- Headers:
Content-Type: application/jsonAccept: text/event-stream(for SSE endpoints)
- Body: JSON payload with tool name and parameters
Example request structure
The following example shows a typical tool execution request:tool-name: The name of the tool to executeparameter1,parameter2: Tool-specific parametersvalue1,value2: Parameter values
Interpret responses
The MCP server returns responses in JSON-RPC format. A successful response includes:- Response data in the
resultfield - Request ID matching the original request
- HTTP status code 200
- Error details in the
errorfield - Error code and message
- HTTP error status code
Common use cases
Use Postman to test the following scenarios:- Verify MCP server availability
- List all available tools
- Execute tools with different parameters
- Test authentication and authorization
- Validate custom tool implementations
- Debug integration issues
Troubleshooting
If connections fail, check the following:- The Atoti application is running
- The MCP server endpoint is accessible
- Authentication credentials are correct
- The request format matches JSON-RPC specifications
- Firewall or network settings allow connections
Related reading
After testing with Postman, consider:- Connect with Claude for AI-powered interaction
- Add custom tools to extend functionality