Find answers to frequently asked questions about the MCP protocol and MCP services.
MCP protocol
How is the MCP protocol implemented?
MCP is an open-source standard protocol proposed by Anthropic. For implementation details, see the MCP Official Website.
MCP services on the cloud
Why do I see a "Request Quota Exceeded" or "Insufficient Balance" error for my Firecrawl/EverArt MCP Server?
Enter the service provider's API key and ensure that it has a sufficient free quota or account balance.
Why is my Notion/Github MCP Server failing with an "Insufficient Permissions" error?
Grant sufficient permissions to your API key. For specific instructions, refer to the documentation for the corresponding MCP service.
Custom MCP service
Can all MCP services be deployed and used without issues?
Not guaranteed. MCP service providers may modify or shut down their services. Alibaba Cloud Model Studio only provides access to these services and does not guarantee their continuous availability.
How do I troubleshoot a failed Custom MCP Service deployment?
Verify the following:
The MCP service runs correctly on your local machine.
The MCP service can be hosted in the cloud and does not require communication with a browser or local application.
The installation method and configuration code are correct.
You have activated Function Compute (FC) with the required permissions, and your Alibaba Cloud account has no overdue payments.
Can I deploy an MCP service that I developed myself?
Node.js: Publish the package to a public npm registry and deploy it via
npx <package-name>.Python: Publish the package to PyPI and deploy it via
uvx <package-name>.Deployed on a remote server: Connect via SSE.
For more information, see Custom MCP Service.
Can I use MCP services from Alibaba Cloud Model Studio in other MCP clients like Cline or Cherry Studio?
Yes. MCP supports both internal configuration within the platform (such as in an Agent or Workflow) and integration with third-party applications (like Cherry Studio or Cursor) through an External Call.
Can an Alibaba Cloud Model Studio MCP service access my local database?
This is not currently supported. MCP services cannot access your local resources.
Why can't my MCP service access remote resources like a cloud database?
MCP services are hosted on Function Compute (FC), which does not have a fixed public IP address for outbound traffic. You must add the IP addresses of Function Compute (FC) to an IP address whitelist or establish a VPC connection for the remote resource (for example, your cloud database).
My MCP Server is stored in a private npm registry. Can I deploy it on Alibaba Cloud Model Studio?
This is not currently supported. Publish the package to a public npm registry or use an SSE connection instead.
If I deploy my own MCP Server, can other people use it?
No. Access is restricted to your Alibaba Cloud account and any authorized RAM users.
Why can't some Local MCP Server be custom deployed on Alibaba Cloud Model Studio?
These services require access to local resources, such as files or hardware, which are unavailable in a cloud environment. We recommend deploying such services locally.
If I update the version of my MCP Server, will the custom MCP service deployed on Alibaba Cloud Model Studio also be updated?
No. For services deployed via
npx/uvx, you must manually redeploy the service to apply the update.
Troubleshooting custom MCP services
Error code | Description | Troubleshooting |
11200044 - MCP_CONNECTION_REFUSED | The client's connection to the target service was refused. Possible causes:
|
|
11200045 - MCP_CONNECTION_TIMEOUT | The connection timed out. Possible causes:
| Retry the connection 2-3 times:
|
11200046 - MCP_REQUEST_TIMEOUT | The connection was established, but the server did not respond in time. Possible causes:
| Retry the request 2-3 times. If the issue persists:
|
11200047 - MCP_NETWORK_ERROR | An error related to network reachability, DNS resolution, or a dropped connection. Possible causes:
| Retry the request 2-3 times. If the issue persists:
|
11200048 - MCP_SSL_ERROR | The TLS/SSL handshake or certificate validation failed. Possible causes:
|
|
11200049 - MCP_SERVER_HTTP_UNAUTHORIZED | HTTP 401. The request lacks valid authentication credentials or the credentials have expired. Possible causes:
|
|
11200050 - MCP_SERVER_HTTP_FORBIDDEN | HTTP 403. The request was authenticated, but the user does not have permission to access the resource. Possible causes:
|
|
11200051 - MCP_HTTP_RATE_LIMIT | HTTP 429. The request rate has exceeded the defined limit. Possible causes:
|
|
11200052 - MCP_HTTP_CLIENT_ERROR | An HTTP 4xx client error other than 400, 401, 403, 404, 405, or 429. Possible causes:
|
|
11200053 - MCP_HTTP_SERVER_ERROR | An HTTP 5xx error, indicating an internal server or gateway error. Possible causes:
| Retry the request 2-3 times. If the issue persists:
|
11200054 - MCP_PROTOCOL_ERROR | The response could not be parsed according to the MCP protocol. Possible causes:
|
|
11200055 - MCP_SESSION_NOT_FOUND | The session does not exist or has expired. Possible causes:
|
|
11200056 - MCP_UNKNOWN_ERROR | An error that does not fit any of the other categories. The original error message is included in the response. Possible causes:
|
|
11200057 - MCP_INIT_TIMEOUT | The server did not send a ready signal during the initialization phase. Possible causes:
| Retry the connection 2-3 times. If the issue persists:
|
11200058 - MCP_SERVER_HTTP_METHOD_NOT_ALLOWED | HTTP 405. The endpoint does not accept the HTTP method used in the request. Possible causes:
|
|
11200059 - MCP_SERVER_HTTP_NOT_FOUND | HTTP 404. The requested path does not exist. Possible causes:
|
|
11200060 - MCP_SERVER_HTTP_BAD_REQUEST | HTTP 400. The request format or parameters are invalid. Possible causes:
|
|
Agent and Workflow integration
Why can't my Agent application call an MCP service, or why does it report a parameter error?
The Agent decides which service to call and what parameters to use based on the prompt. Try the following:
Optimize your prompt to clarify the intent.
If that does not work, switch to a more powerful inference model, such as a Qwen 3 series model.
Does calling an MCP service increase the number of input or output tokens?
Yes, calling an MCP service can increase both input and output tokens.
Increased input tokens: Content retrieved from the MCP service is passed to the model as context, which directly increases the number of input tokens.
Increased output tokens: Although calling an MCP service does not directly generate output tokens, the model may produce a more detailed and complete response because it has richer context, which can indirectly increase the number of output tokens.
Can I access an MCP service when calling the Qwen API?
No. MCP services from Alibaba Cloud Model Studio must be integrated into an Agent or Workflow application. They cannot be accessed directly when calling the Qwen API.