Model Context Protocol endpoint
curl --request POST \
--url https://platform.trylath.com/mcpconst options = {method: 'POST'};
fetch('https://platform.trylath.com/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://platform.trylath.com/mcp"
response = requests.post(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://platform.trylath.com/mcp"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Model Context Protocol endpoint
The same operations as tools, over MCP. Authenticated with a Lath key like any other route.
POST
/
mcp
Model Context Protocol endpoint
curl --request POST \
--url https://platform.trylath.com/mcpconst options = {method: 'POST'};
fetch('https://platform.trylath.com/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://platform.trylath.com/mcp"
response = requests.post(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://platform.trylath.com/mcp"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Response
200
ok
Last modified on September 13, 2026
Was this page helpful?

