chat-with-openai
Interact with OpenAI's chat completions to process and generate text responses using the Any Chat Completions MCP server for streamlined integration.
Instructions
Text chat with OpenAI
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| content | Yes | The content of the chat to send to OpenAI | 
Input Schema (JSON Schema)
{
  "properties": {
    "content": {
      "description": "The content of the chat to send to OpenAI",
      "type": "string"
    }
  },
  "required": [
    "content"
  ],
  "type": "object"
}