Last active
May 19, 2025 05:24
-
-
Save kansass123/0ad2b7e52decde29a364b5907636c87c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"openapi": "3.1.0", | |
"info": { | |
"title": "Notion MCP Server", | |
"version": "1.0.0" | |
}, | |
"servers": [ | |
{ | |
"url": "https://notion-mcp-server-a7fg.onrender.com" | |
} | |
], | |
"paths": { | |
"/ping": { | |
"get": { | |
"operationId": "ping", | |
"summary": "Ping", | |
"responses": { | |
"200": { | |
"description": "Ping successful" | |
} | |
} | |
} | |
}, | |
"/tool/make_page": { | |
"post": { | |
"summary": "Create a Notion page", | |
"operationId": "make_page", | |
"requestBody": { | |
"required": true, | |
"content": { | |
"application/json": { | |
"schema": { | |
"type": "object", | |
"properties": { | |
"title": { | |
"type": "string", | |
"description": "The title of the Notion page" | |
}, | |
"content": { | |
"type": "string", | |
"description": "Markdown content to populate the page" | |
} | |
}, | |
"required": [ | |
"title", | |
"content" | |
], | |
"example": { | |
"title": "MCP Victory Log", | |
"content": "- Setup done\n- GPT connected\n- Render deployed" | |
} | |
} | |
} | |
} | |
}, | |
"responses": { | |
"200": { | |
"description": "Page created" | |
}, | |
"400": { | |
"description": "Invalid input" | |
}, | |
"500": { | |
"description": "Internal server error" | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"openapi": "3.1.0", | |
"info": { | |
"title": "Notion MCP Server", | |
"version": "1.0.0" | |
}, | |
"servers": [ | |
{ | |
"url": "https://notion-mcp-server-a7fg.onrender.com" | |
} | |
], | |
"paths": { | |
"/ping": { | |
"get": { | |
"operationId": "ping", | |
"summary": "Ping", | |
"responses": { | |
"200": { | |
"description": "Ping successful", | |
"content": { | |
"application/json": { | |
"schema": { | |
"type": "object", | |
"properties": { | |
"message": { | |
"type": "string" | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment