Accessing Token Manager
Navigate to your account settings to manage API tokens:Open Account Menu
Select Account Settings
Access Token Manager
Creating a New Token
Click New Token
Enter Token Details
Set Expiration Period
- 30 days - Short-term testing
- 90 days - Medium-term projects
- 6 months - Long-term integrations
- 1 year - Annual renewals
- No expiration (4 years) - Permanent access
Generate Token
Copy Token Securely
Token Security Best Practices
Storage Guidelines
- Store tokens in environment variables, not in code
- Use secure secret management services in production
- Never commit tokens to version control systems
- Rotate tokens regularly based on your security policy
Access Control
- Create separate tokens for different applications or environments
- Use descriptive names to easily identify token purposes
- Revoke unused or compromised tokens immediately
- Monitor token usage through API logs
Environment Separation
Using API Tokens
HTTP Headers
Include your API token in the Authorization header of your requests:Code Examples
- JavaScript
- Python
- cURL
Managing Existing Tokens
Viewing Token Information
Your token list displays:- Token Name - The descriptive name you assigned
- Masked Value - First 24 characters + masked remainder for identification
- Expiration Date - When the token will expire
- Status - Active/Expired indicator
Copying Token Values
Locate Your Token
Click Copy Button
Verify Copy Success
Revoking Access
When you need to revoke a token:Identify the Token
Click Delete Button
Confirm Revocation
Update Your Applications
Token Expiration Handling
Monitoring Expiration
- Check expiration dates regularly in the token manager
- Set calendar reminders before tokens expire
- Monitor your application logs for authentication errors
Renewal Process
Create New Token
Update Applications
Test Integration
Revoke Old Token
Connecting via MCP
Meetzy exposes a Model Context Protocol (MCP) server that gives AI assistants like Claude, Cursor, Windsurf, and ChatGPT direct, authenticated access to your calls, WhatsApp conversations, evaluations, and analytics — all using the same API tokens described above.Getting the MCP Server URL
Open the MCP Section
Copy the Server URL
Have a Token Ready
Connecting Cursor, Claude, or Windsurf
These clients (and most desktop MCP clients) are configured through a JSON snippet that defines the server URL and headers. Add the following to your client’s MCP configuration file:- Cursor
- Claude Desktop
- Windsurf
YOUR_API_TOKEN with your actual token, then save and reload Cursor.Click Copy Configuration
Replace the Placeholder Token
YOUR_API_TOKEN with your real token valuePaste into Your Client
Restart the Client
Connecting ChatGPT as a Custom Connector
ChatGPT supports MCP servers through Custom Connectors, authenticated with a Bearer token rather than a JSON config file.Open Connector Settings
Add a New Connector
Enter the Server URL
Set Authentication to Bearer Token
Save and Enable
Authorization header on every request, so you can reuse the same token you use for direct API calls or other MCP clients.Generic Connection (Any MCP-Compatible Client)
The Meetzy MCP server implements the Streamable HTTP transport, so any MCP-compatible client can connect to it directly without special integration work. All you need is:- Server URL: the MCP endpoint shown in the token manager
- Transport: Streamable HTTP
- Authentication:
Authorization: Bearer <your_api_token>header on every request
Troubleshooting
Authentication Errors
If you receive 401 Unauthorized errors:- Verify the token is correctly included in the Authorization header
- Check that the token hasn’t expired
- Ensure there are no extra spaces or characters in the token value
Token Not Working
- Confirm you’re using the complete token value
- Verify the token hasn’t been revoked
- Check that your account has the necessary permissions for the API endpoint
MCP Connection Issues
- Make sure your MCP client supports the Streamable HTTP transport
- Confirm the
Authorizationheader is being sent on every request, including the initial handshake - If a tool call returns no data, verify the token belongs to the account that owns the assistants or calls you’re trying to access
Rate Limiting
API tokens are subject to rate limits:- Implement exponential backoff for retries
- Monitor response headers for rate limit information
- Consider caching responses when appropriate

