import type { ToolConfig } from '@/tools/types' import { WORDPRESS_COM_API_BASE, type WordPressGetPostParams, type WordPressGetPostResponse, } from '@/tools/wordpress/types' export const getPostTool: ToolConfig = { id: 'wordpress_get_post', name: 'WordPress Get Post', description: 'Get a single blog post from WordPress.com by ID', version: '1.0.0', oauth: { required: true, provider: 'wordpress', requiredScopes: ['global'], }, params: { siteId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com)', }, postId: { type: 'number', required: true, visibility: 'user-or-llm', description: 'The ID of the post to retrieve', }, }, request: { url: (params) => `${WORDPRESS_COM_API_BASE}/${params.siteId}/posts/${params.postId}`, method: 'GET', headers: (params) => ({ 'Content-Type': 'application/json', Authorization: `Bearer ${params.accessToken}`, }), }, transformResponse: async (response: Response) => { if (!response.ok) { const error = await response.json().catch(() => ({})) throw new Error(error.message || `WordPress API error: ${response.status}`) } const data = await response.json() return { success: true, output: { post: { id: data.id, date: data.date, modified: data.modified, slug: data.slug, status: data.status, type: data.type, link: data.link, title: data.title, content: data.content, excerpt: data.excerpt, author: data.author, featured_media: data.featured_media, categories: data.categories || [], tags: data.tags || [], }, }, } }, outputs: { post: { type: 'object', description: 'The retrieved post', properties: { id: { type: 'number', description: 'Post ID' }, date: { type: 'string', description: 'Post creation date' }, modified: { type: 'string', description: 'Post modification date' }, slug: { type: 'string', description: 'Post slug' }, status: { type: 'string', description: 'Post status' }, type: { type: 'string', description: 'Post type' }, link: { type: 'string', description: 'Post URL' }, title: { type: 'object', description: 'Post title object' }, content: { type: 'object', description: 'Post content object' }, excerpt: { type: 'object', description: 'Post excerpt object' }, author: { type: 'number', description: 'Author ID' }, featured_media: { type: 'number', description: 'Featured media ID' }, categories: { type: 'array', description: 'Category IDs' }, tags: { type: 'array', description: 'Tag IDs' }, }, }, }, }