Content
### api-doce-mcp
#### Overview
Used to read interface documentation information, automatically read OpenAPI documentation. Platforms like Apifox can export OpenAPI Spec version JSON, and you can replace apidocs.json with it.
Each OpenAPI interface is automatically registered as an MCP Tool.
The tool's parameter signature, type, description, etc., are all automatically generated according to the OpenAPI schema. Clients (such as Trae, Claude, Cursor) can automatically recognize and display detailed information for each parameter. Each interface also automatically registers a schema query tool (such as get_login_schema) to return structured information such as the interface's parameter fields, types, whether they are required, and remarks. This allows AI/users to directly query which fields the interface needs, rather than blindly calling the interface.
You only need to maintain the OpenAPI documentation, without manually registering tools or maintaining parameter lists. Adding/modifying interfaces only requires updating apidocs.json, and the server automatically adapts.
### MCP Configuration
```json
{
"mcpServers": {
"OpenAPI Python MCP (SSE Only)": {
"url": "http://127.0.0.1:8000/sse"
}
}
}
```
### Usage Examples
View the field information returned by the MCP's login interface, and then implement the LoginScreen.js login function based on the field information. The implementation and invocation of the interface can be found in HomeScreen.js.
Connection Info
You Might Also Like
everything-claude-code
Complete Claude Code configuration collection - agents, skills, hooks,...
markitdown
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
servers
Model Context Protocol Servers
servers
Model Context Protocol Servers
Time
A Model Context Protocol server for time and timezone conversions.
Filesystem
Node.js MCP Server for filesystem operations with dynamic access control.