MCP
518.PLUS runs a standard MCP server (Streamable HTTP). Configure it once in any MCP client and your agent can call every 518 file tool — metered per call, failed calls refunded.
Quick start
- Create an API token first: Tokens(fsk_ 开头)
- Add the server URL + Bearer token in your MCP client
- Ask your agent to process files right in the conversation
MCP Server
https://518.plus/mcp
Client config
- URL
https://518.plus/mcp- Header name
Authorization- Header value
Bearer fsk_YOUR_TOKEN- Can't set custom headers?
https://518.plus/mcp?key=fsk_YOUR_TOKEN
{
"mcpServers": {
"518plus": {
"url": "https://518.plus/mcp",
"headers": { "Authorization": "Bearer fsk_YOUR_TOKEN" }
}
}
}
HTTP API (Bearer)
Need plain REST? API v1 stays available under the same Bearer token.
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/me | Account: id, username, balance |
| GET | /api/v1/tools | Tool catalog with per-tool cost |
| POST | /api/v1/uploads | Upload a source file |
| POST | /api/v1/execute | Run a tool (idempotent via client_ref) |
| GET | /api/v1/uploads/{id} | Fetch output by public id |