A knowledge graph–powered assistant for the DisburseLoan domain. Connect it to your AI tool to query validations, flows, entities, and more.
You need an API key to connect — contact the administrator. Every client must send it as: Authorization: Bearer <your-key>
MCP is an open protocol — CLI tools from OpenAI (Codex) and Google (Gemini) support it. Their web interfaces do not.
Edit .claude/settings.json (global) or .claude/settings.local.json (project-only).
{
"mcpServers": {
"disbursement-mcp": {
"url": "http://35-234-220-25.sslip.io/sse",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}
The MCP tools appear automatically in your next session.
Open claude.ai → profile → Settings → Integrations → Add Integration.
http://35-234-220-25.sslip.io/sseAuthorizationBearer <your-api-key>New chat → click the Tools icon → toggle disbursement-mcp on.
http://, it will not work here — ask the admin to enable HTTPS first.These editors run locally on your machine and support MCP servers over HTTP/SSE.
Go to Cursor Settings → MCP (or edit ~/.cursor/mcp.json):
{
"mcpServers": {
"disbursement-mcp": {
"url": "http://35-234-220-25.sslip.io/sse",
"headers": {
"Authorization":
"Bearer <key>"
}
}
}
}
Restart Cursor — tools appear in Agent mode.
Edit ~/.continue/config.json:
{
"mcpServers": [
{
"name": "disbursement-mcp",
"transport": {
"type": "sse",
"url": "http://35-234-220-25.sslip.io/sse",
"headers": {
"Authorization":
"Bearer <key>"
}
}
}
]
}
Go to Windsurf Settings → MCP Servers → Add Server → choose SSE:
http://35-234-220-25.sslip.io/sseAuthorization: Bearer <key>Or edit ~/.codeium/windsurf/mcp_config.json with the same JSON format as Cursor.
Edit ~/.config/zed/settings.json:
{
"context_servers": {
"disbursement-mcp": {
"settings": {
"url": "http://35-234-220-25.sslip.io/sse",
"headers": {
"Authorization":
"Bearer <key>"
}
}
}
}
}
Edit ~/.codex/config.toml:
# ~/.codex/config.toml [[mcp_servers]] name = "disbursement-mcp" url = "http://35-234-220-25.sslip.io/sse" [mcp_servers.headers] Authorization = "Bearer <key>"
Then run: codex --mcp disbursement-mcp
Edit ~/.gemini/settings.json:
{
"mcpServers": {
"disbursement-mcp": {
"url": "http://35-234-220-25.sslip.io/sse",
"headers": {
"Authorization":
"Bearer <key>"
}
}
}
}
Then run: gemini — tools are available in the session.
Ollama and LM Studio are model runners — they serve AI models locally but have no MCP client built in. You connect them to an MCP-capable editor which handles the MCP side.
Step 1 — Install Ollama and pull a model:
curl -fsSL https://ollama.com/install.sh | sh ollama pull qwen2.5-coder:7b
Step 2 — Edit ~/.continue/config.json:
{
"models": [{
"provider": "ollama",
"model": "qwen2.5-coder:7b",
"title": "Local Qwen"
}],
"mcpServers": [{
"name": "disbursement-mcp",
"transport": {
"type": "sse",
"url": "http://35-234-220-25.sslip.io/sse",
"headers": {
"Authorization": "Bearer <key>"
}
}
}]
}
Step 1 — Open LM Studio → load a model → start the local server (port 1234).
Step 2 — Edit ~/.continue/config.json:
{
"models": [{
"provider": "lmstudio",
"model": "AUTODETECT",
"title": "LM Studio"
}],
"mcpServers": [{
"name": "disbursement-mcp",
"transport": {
"type": "sse",
"url": "http://35-234-220-25.sslip.io/sse",
"headers": {
"Authorization": "Bearer <key>"
}
}
}]
}
Step 1 — In Cursor Settings → Models → add a custom model pointing to http://localhost:11434 (Ollama's OpenAI-compatible endpoint).
Step 2 — MCP config is the same as the Cursor section above — Cursor handles both the local model and MCP independently.
qwen2.5-coder:7b — best for code, fastqwen2.5-coder:32b — best quality localllama3.1:8b — general purposemistral:7b — lightweight optionTool calling quality matters for MCP — models without function-calling support will not invoke MCP tools correctly.