get_article
Retrieve full content of a specific article by entering its unique ID. Designed for accessing detailed articles directly through Semantic Pen MCP Server.
Instructions
Get a specific article by ID with full content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
articleId | Yes | The ID of the article to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"articleId": {
"description": "The ID of the article to retrieve",
"type": "string"
}
},
"required": [
"articleId"
],
"type": "object"
}