MCPcopy
hub / github.com/claude-code-best/claude-code / sendMessage

Function sendMessage

packages/weixin/src/api.ts:97–104  ·  view source on GitHub ↗
(
  baseUrl: string,
  token: string,
  msg: SendMessageReq['msg'],
)

Source from the content-addressed store, hash-verified

95}
96
97export async function sendMessage(
98 baseUrl: string,
99 token: string,
100 msg: SendMessageReq['msg'],
101): Promise<void> {
102 const body: SendMessageReq = { msg, base_info: baseInfo() }
103 await post(baseUrl, '/ilink/bot/sendmessage', body, token)
104}
105
106export async function getUploadUrl(
107 baseUrl: string,

Callers 2

sendTextFunction · 0.70
sendItemsFunction · 0.70

Calls 2

baseInfoFunction · 0.85
postFunction · 0.85

Tested by

no test coverage detected