/
Server configuration and capabilities from the MCP manifest
Size: 2,887 bytes (722 tokens)
Tools Found: 4
Analysis ID: lg5bdpbd
This MCP server provides tools to execute code, list API endpoints, get endpoint schemas, and invoke API endpoints.
Stars
Registry ID: bf008dae-4210-4bce-8621-a709bc1e67cb
Added to Registry: 9/21/2025
Last Updated: 9/22/2025
Last Seen: 9/22/2025
License: Apache License 2.0
Default Branch: master
Last Push: 9/18/2025
Last Release: 9/18/2025
Open Issues: 15
Historical performance and growth metrics over time
{ "name": "MCP Server", "tags": [ "MCP", "SDK", "Code Execution" ], "tools": [ { "name": "execute", "description": "Runs Typescript code to interact with the API.\nYou are a skilled programmer writing code to interface with the service.\nDefine an async function named \"run\" that takes a single parameter of an initialized client, and it will be run.\nDo not initialize a client, but instead use the client that you are given as a parameter.\nYou will be returned anything that your function returns, plus the results of any console.log statements.\nIf any code triggers an error, the tool will return an error response, so you do not need to add error handling unless you want to output something more helpful than the raw error.\nIt is not necessary to add comments to code, unless by adding those comments you believe that you can generate better code.\nThis code will run in a container, and you will not be able to use fetch or otherwise interact with the network calls other than through the client you are given.\nAny variables you define won't live between successive uses of this call, so make sure to return or log any data you might need later.", "input_schema": { "type": "object", "required": [ "code" ], "properties": { "code": { "type": "string" } } }, "output_schema": { "type": "object", "properties": { "result": { "type": "object" }, "errLines": { "type": "array", "items": { "type": "string" } }, "logLines": { "type": "array", "items": { "type": "string" } } } } }, { "name": "list_api_endpoints", "description": "List or search for all endpoints in the Mux Node API", "input_schema": { "type": "object", "properties": { "search_query": { "type": "string" } } }, "output_schema": { "type": "object", "properties": { "tools": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "tags": { "type": "array", "items": { "type": "string" } }, "resource": { "type": "string" }, "operation": { "type": "string" }, "description": { "type": "string" } } } } } } }, { "name": "get_api_endpoint_schema", "description": "Get the schema for an endpoint in the Mux Node API. You can use the schema returned by this tool to invoke an endpoint with the `invoke_api_endpoint` tool.", "input_schema": { "type": "object", "required": [ "endpoint" ], "properties": { "endpoint": { "type": "string" } } }, "output_schema": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "inputSchema": { "type": "object" } } } }, { "name": "invoke_api_endpoint", "description": "Invoke an endpoint in the Mux Node API. Note: use the `list_api_endpoints` tool to get the list of endpoints and `get_api_endpoint_schema` tool to get the schema for an endpoint.", "input_schema": { "type": "object", "required": [ "endpoint_name", "args" ], "properties": { "args": { "type": "object" }, "endpoint_name": { "type": "string" } } }, "output_schema": { "type": "object", "properties": { "result": { "type": "object" } } } } ], "version": "1.0.0", "categories": [ "API", "Tools" ], "description": "A tool that runs code against a copy of the SDK." }
Forks
Watchers
Contributors
Last Push: 9/18/2025
Last Release: 9/18/2025
Open Issues: 15