MCPcopy
hub / github.com/MODSetter/SurfSense / get

Method get

surfsense_web/lib/apis/base-api.service.ts:216–229  ·  view source on GitHub ↗
(
		url: string,
		responseSchema?: ZodType<T>,
		options?: Omit<RequestOptions, "method" | "responseType">
	)

Source from the content-addressed store, hash-verified

214 }
215
216 async get<T>(
217 url: string,
218 responseSchema?: ZodType<T>,
219 options?: Omit<RequestOptions, "method" | "responseType">
220 ) {
221 return this.request(url, responseSchema, {
222 method: "GET",
223 headers: {
224 "Content-Type": "application/json",
225 },
226 ...options,
227 responseType: ResponseType.JSON,
228 });
229 }
230
231 async post<T>(
232 url: string,

Callers 15

TokenHandlerFunction · 0.80
write-todos.tsxFile · 0.80
PodcastPlayerFunction · 0.80
getCitationNumberFunction · 0.80
ThinkingStepsPartFunction · 0.80
ThinkingStepsPartFunction · 0.80
ConnectorIndicatorFunction · 0.80
findItemFunction · 0.80
loadFolderContentsFunction · 0.80
toggleFolderFunction · 0.80
renderItemFunction · 0.80

Calls 1

requestMethod · 0.95

Tested by 2

test_luma_connectorFunction · 0.64