MCP Server Data Extractor — Extract Tool Schemas & Resources
Pricing
Pay per event + usage
MCP Server Data Extractor — Extract Tool Schemas & Resources
Connect to any MCP server and extract tool schemas, resource definitions, and prompt templates. Essential for AI agent development, function calling setup, and LLM tool integration.
Pricing
Pay per event + usage
Rating
0.0
(0)
Developer
Wingman
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
7 days ago
Last modified
Categories
Share
MCP Server Data Extractor
Connect to any MCP (Model Context Protocol) server and extract tool schemas, resource definitions, and prompt templates.
Why This Actor?
MCP (Model Context Protocol) is an open protocol that enables AI models to interact with external tools and data sources securely. This actor helps you discover and inspect MCP server capabilities:
- AI Agent Developers: Quickly see what tools an MCP server offers
- LLM Integrators: Get the JSON schemas you need for function calling
- Tool Builders: Verify your MCP server's tool definitions
- System Administrators: Audit MCP server endpoints
Input
| Field | Type | Default | Description |
|---|---|---|---|
mcpServerUrl | string | — | URL of the MCP server endpoint |
requestTimeout | integer | 30 | Timeout per request (seconds) |
includeResources | boolean | true | List available resources |
includePrompts | boolean | true | List available prompts |
serverHeaders | object | {} | Custom HTTP headers (auth tokens, etc.) |
Output
Each dataset entry represents a tool, resource, or prompt definition:
| Field | Type | Description |
|---|---|---|
type | string | Entry type: tool, resource, or prompt |
name | string | Name of the tool/resource/prompt |
description | string | Human-readable description |
inputSchema | string | JSON schema for input parameters |
serverName | string | Name of the MCP server |
serverVersion | string | Server version |
uri | string | Resource URI (resources only) |
mimeType | string | Resource MIME type (resources only) |
Example
{"mcpServerUrl": "https://mcp.example.com/api"}
Protocol Support
- JSON-RPC 2.0 over HTTP POST
- MCP protocol version 2024-11-05
- Supports
tools/list,resources/list,prompts/list