> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arclio.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get prompt with arguments

> Returns a specific prompt with provided arguments



## OpenAPI

````yaml https://gist.githubusercontent.com/hillaryke/db4387d90d8a2367c8d3f478f2d48acc/raw/65b07bde29d5ff9b22522b3659db0b103c2d32e4/openapi.json post /users/{userId}/prompts/get
openapi: 3.0.0
info:
  title: MCP Hub API
  version: 1.0.0
  description: >-
    A service that manages isolated Model Context Protocol (MCP) server
    instances
servers:
  - url: http://localhost:3000
    description: Development server
security: []
tags: []
paths:
  /users/{userId}/prompts/get:
    post:
      tags:
        - Prompts
      summary: Get prompt with arguments
      description: Returns a specific prompt with provided arguments
      parameters:
        - name: userId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - serverName
                - name
              properties:
                serverName:
                  type: string
                  description: Name of the MCP server
                name:
                  type: string
                  description: Name of the prompt
                arguments:
                  type: object
                  description: Optional arguments for the prompt
      responses:
        '200':
          description: Prompt with arguments
          content:
            application/json:
              schema:
                $ref: 93bc767f-0385-47b4-8169-7b42e44eda65
        '500':
          $ref: '#/components/responses/Error'
components:
  responses:
    Error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string

````