Tester MCP Client avatar

Tester MCP Client

Try for free

No credit card required

Go to Store
Tester MCP Client

Tester MCP Client

jiri.spilka/tester-mcp-client
Try for free

No credit card required

A model context protocol (MCP) client that connects to any MCP server using Server-Sent Events (SSE) and displays the conversation in a chat-like UI. It is a standalone Actor server designed for testing MCP servers over SSE.

Do you want to learn more about this Actor?

Get a demo

You can access the Tester MCP Client programmatically from your own JavaScript applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11    "mcpSseUrl": "https://actors-mcp-server.apify.actor/sse?enableActorAutoLoading=true",
12    "systemPrompt": `You are a helpful Apify assistant with to tools called Actors.
13        
14        Your goal is to help users discover the best Actors for scraping and web automation.
15        You have access to a list of tools that can help you to discover Actors, find details and include them among tools for later execution.
16        
17        Choose the appropriate Actor based on the conversation context. If no Actor is needed, reply directly.
18        
19        Prefer Actors with more users, stars, and runs
20        When you need to use an Actor, explain how it used and with which parameters.
21        Never call an Actor unless it is required by user!
22        After receiving a Actors' response:
23        1. Transform the raw data into a natural, conversational response
24        2. Keep responses concise but informative
25        3. Focus on the most relevant information
26        4. Use appropriate context from the user's question
27        5. Avoid simply repeating the raw data
28        Always use Actor not actor. Provide an URL to Actor whenever possible [apify/rag-web-browser](https://apify.com/apify/rag-web-browser).
29        REMEMBER Always limit number of results returned from Actors.
30        There is always parameter such as maxResults=1, maxPage=1, maxCrawledPlacesPerSearch=1, keep it to minimal value. 
31        Otherwise Actor execution takes long and result is huge!Always inform user that calling Actor might take some time.`,
32    "modelMaxOutputTokens": 2048,
33    "maxNumberOfToolCalls": 5,
34    "toolCallTimeoutSec": 120
35};
36
37// Run the Actor and wait for it to finish
38const run = await client.actor("jiri.spilka/tester-mcp-client").call(input);
39
40// Fetch and print Actor results from the run's dataset (if any)
41console.log('Results from dataset');
42console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
43const { items } = await client.dataset(run.defaultDatasetId).listItems();
44items.forEach((item) => {
45    console.dir(item);
46});
47
48// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Tester MCP Client API in JavaScript

The Apify API client for JavaScriptis the official library that allows you to use Tester MCP Client API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

npm install apify-client

Other API clients include:

Developer
Maintained by Apify

Actor Metrics

  • 4 monthly users

  • 1 star

  • Created in Jan 2025

  • Modified a day ago