Agent Skills · Example Payload

Agent Skills Mcp Server Example

Agent SkillsAI AgentsTool UseFunction CallingMCPAgentic AIAutomation

Agent Skills Mcp Server Example is an example object payload from Agent Skills, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

nameversiontransporttoolsresourcesprompts

Example Payload

agent-skills-mcp-server-example.json Raw ↑
{
  "name": "filesystem-server",
  "version": "1.2.0",
  "transport": "stdio",
  "tools": [
    {
      "name": "read_file",
      "description": "Read the contents of a file at the given path.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "path": { "type": "string", "description": "File path to read" }
        },
        "required": ["path"]
      }
    },
    {
      "name": "write_file",
      "description": "Write content to a file at the given path.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "path": { "type": "string", "description": "File path to write" },
          "content": { "type": "string", "description": "Content to write" }
        },
        "required": ["path", "content"]
      }
    }
  ],
  "resources": [
    {
      "uri": "file:///home/user/documents",
      "name": "Documents",
      "mimeType": "inode/directory"
    }
  ],
  "prompts": []
}