Skip to content

Instantly share code, notes, and snippets.

@kansass123
Last active May 19, 2025 05:24
Show Gist options
  • Save kansass123/0ad2b7e52decde29a364b5907636c87c to your computer and use it in GitHub Desktop.
Save kansass123/0ad2b7e52decde29a364b5907636c87c to your computer and use it in GitHub Desktop.
{
"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"
}
}
}
}
}
}
{
"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