Browse
For agents
About
ZIP AI – AI Website Builder & AI Agent (Beta)
/
0.0.8
ZIP AI – AI Website Builder & AI Agent (Beta)
v0.0.8
Switch version
0.0.10
0.0.9
trunk
0.0.4
0.0.5
0.0.6
0.0.7
0.0.8
Overview
Code
zip-ai
/
lib
/
php-mcp-schema
/
src
/
Common
/
JsonRpc
/
Union
/
JSONRPCResponseInterface.php
JSONRPCResponseInterface.php
in ZIP AI – AI Website Builder & AI Agent (Beta) 0.0.8, at lib/php-mcp-schema/src/Common/JsonRpc/Union/JSONRPCResponseInterface.php
23 lines
446 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
declare
(
strict_types
=
1
)
;
4
5
namespace
WP
\
McpSchema
\
Common
\
JsonRpc
\
Union
;
6
7
use
WP
\
McpSchema
\
Common
\
JsonRpc
\
Union
\
JSONRPCMessageInterface
;
8
9
/**
10
* A response to a request, containing either the result or error.
11
*
12
* Union type members:
13
* - JSONRPCResultResponse
14
* - JSONRPCErrorResponse
15
*
16
* @mcp-domain Common
17
* @mcp-subdomain JsonRpc
18
* @mcp-version 2025-11-25
19
*/
20
interface
JSONRPCResponseInterface
extends
JSONRPCMessageInterface
21
{
22
}
23