| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "toolSpecification": {
- "tools": [
- {
- "name": "getUserInfo",
- "description": "获取用户基本信息",
- "inputSchema": {
- "type": "object",
- "properties": {
- "userName": {
- "type": "string",
- "description": "用户姓名"
- }
- },
- "required": [
- "userName"
- ],
- "additionalProperties": false
- },
- "outputSchema": null
- }
- ],
- "toolsMeta": {
- "getUserInfo": {
- "enabled": true
- }
- }
- },
- "requestBodyTemplateForHttp": {
- "body": {
- "ask": {
- "name": "{userName}"
- }
- }
- },
- "responseBodyTemplateForMcp": {
- "body": "response.ask"
- },
- "endpoints": [
- {
- "protocol": "http",
- "address": "127.0.0.1",
- "port": 7777,
- "path": "/userinfo",
- "headers": [
- {
- "variables": {
- "token-xxx": {
- "value": "yujjkhgtyjjk"
- }
- }
- }
- ]
- }
- ]
- }
|