|
| 1 | +## Winston AI MCP Server (Apify Actor) |
| 2 | + |
| 3 | +Run the **Winston AI Model Context Protocol (MCP) server** via this Apify Actor, giving language models **real-time access to advanced AI text and image detection, plagiarism checks, and sophisticated text comparison capabilities**. Use your Apify credits to integrate Winston AI's powerful detection features into your AI workflows—no fine-tuning required. ⚡️ |
| 4 | + |
| 5 | +This Actor proxies the Winston AI MCP Server, allowing AI clients to integrate directly with Winston AI's detection and analysis capabilities. It requires a valid Winston AI API Key for authentication. |
| 6 | + |
| 7 | +About this MCP Server: To understand how to connect to and utilize MCP servers, please refer to the official Model Context Protocol documentation at [mcp.apify.com](https://mcp.apify.com). |
| 8 | + |
| 9 | +## Connection URL |
| 10 | +MCP clients can connect to this server at: |
| 11 | + |
| 12 | +```text |
| 13 | +https://mcp-servers--winston-ai-mcp-server.apify.actor/mcp |
| 14 | +``` |
| 15 | + |
| 16 | +## Client configuration |
| 17 | +To connect to this MCP server, use the following configuration in your MCP client: |
| 18 | + |
| 19 | +```json |
| 20 | +{ |
| 21 | + "mcpServers": { |
| 22 | + "winston-ai": { |
| 23 | + "url": "https://mcp-servers--winston-ai-mcp-server.apify.actor/mcp", |
| 24 | + "headers": { |
| 25 | + "Authorization": "Bearer YOUR_APIFY_TOKEN" |
| 26 | + }, |
| 27 | + "env": { |
| 28 | + "WINSTONAI_API_KEY": "YOUR_WINSTON_AI_API_KEY" |
| 29 | + } |
| 30 | + } |
| 31 | + } |
| 32 | +} |
| 33 | +``` |
| 34 | + |
| 35 | +Note: Replace `YOUR_APIFY_TOKEN` with your actual Apify API token (find it in the [Apify Console](https://console.apify.com/account/integrations)). Also, set `WINSTONAI_API_KEY` with your actual Winston AI API Key, which you can obtain at [https://dev.gowinston.ai](https://dev.gowinston.ai). This key is essential for the Actor to authenticate with the Winston AI service. |
| 36 | + |
| 37 | +## 🚩 Claim this MCP server |
| 38 | +All credits to the original authors of the Winston AI MCP server implementation. |
| 39 | +To claim this server, please write to [[email protected]](mailto:[email protected]). |
| 40 | + |
| 41 | +--- |
| 42 | + |
| 43 | +## 🛠️ Available Tools |
| 44 | + |
| 45 | +Your AI tool will have access to the following detection and analysis capabilities from Winston AI: |
| 46 | + |
| 47 | +| Tool Name | Description | |
| 48 | +| :----------------------- | :------------------------------------------------------------------- | |
| 49 | +| `ai-text-detection` | Classify text as human-generated or AI-generated, with sentence-level analysis. | |
| 50 | +| `ai-image-detection` | Identify AI-generated images, including C2PA metadata and watermark detection. | |
| 51 | +| `plagiarism-detection` | Perform internet-scale plagiarism scans with detailed source reports. | |
| 52 | +| `text-compare` | Conduct bidirectional similarity analysis between two texts. | |
| 53 | + |
| 54 | +Note: Refer to the Winston AI API Documentation (https://docs.gowinston.ai/api-reference/mcp-server) for detailed input parameters and usage of each tool. |
| 55 | + |
| 56 | +### ✨ Example Usage |
| 57 | + |
| 58 | +Your AI assistant should automatically use these tools for content analysis and detection. |
| 59 | + |
| 60 | +#### AI Content Detection |
| 61 | +- "Check if this article about quantum computing was written by an AI or a human." (Uses `ai-text-detection`) |
| 62 | +- "Analyze this image: [image URL]. Is it AI-generated?" (Uses `ai-image-detection`) |
| 63 | + |
| 64 | +#### Plagiarism & Comparison |
| 65 | +- "Scan this essay for plagiarism against online sources." (Uses `plagiarism-detection`) |
| 66 | +- "Compare these two text snippets for similarity: 'First text...' and 'Second text...'" (Uses `text-compare`) |
| 67 | + |
| 68 | +## References |
| 69 | +To learn more about Apify and Actors, take a look at the following resources: |
| 70 | +- [Apify SDK for JavaScript documentation](https://docs.apify.com/sdk/js) |
| 71 | +- [Apify SDK for Python documentation](https://docs.apify.com/sdk/python) |
| 72 | +- [Apify Platform documentation](https://docs.apify.com/platform) |
| 73 | +- [Apify MCP Server](https://docs.apify.com/platform/integrations/mcp) |
| 74 | +- [Model Context Protocol documentation](https://mcp.apify.com) |
| 75 | +- [Webinar: Building and Monetizing MCP Servers on Apify](https://www.youtube.com/watch?v=w3AH3jIrXXo) |
| 76 | +- [Join our developer community on Discord](https://discord.com/invite/jyEM2PRvMU) |
| 77 | + |
| 78 | +### Notes and Best Practices |
| 79 | + |
| 80 | +* **Authentication:** This Apify Actor requires your Apify API token for access. The Actor itself authenticates with the Winston AI service using the `WINSTONAI_API_KEY` provided as an environment variable to the Actor. This key is crucial for the Actor's functionality. Obtain yours at [https://dev.gowinston.ai](https://dev.gowinston.ai). |
| 81 | +* **Rate Limits and Quotas:** Winston AI APIs and your Actor may enforce rate limits and have associated credit costs. Implement backoff/retry where appropriate and monitor your usage. |
| 82 | +* **Content Limits:** Be aware of minimum and maximum character/text/image size limits for Winston AI tools. |
| 83 | +* **Compliance:** Ensure your usage complies with your organization’s data governance and Winston AI’s terms of service. |
0 commit comments