Skip to main content
Glama
oxinion

oxinion-finance-mcp

by oxinion

Oxinion Finance MCP Server

A remote MCP server for Oxinion Finance, deployed on Cloudflare Workers.

Production URL: https://mcp.oxinion.com/finance/mcp

Development

pnpm install
npm start

Server runs at http://localhost:8787/finance/mcp.

Related MCP server: Remote MCP Server Authless

Deploy

npx wrangler@latest deploy

Deploys to finance.oxinion.com/mcp (route configured in wrangler.jsonc).

Run below in your terminal to connect the MCP server to Claude Code:

claude mcp add --transport http oxinion-finance https://mcp.oxinion.com/finance/mcp

Connect Claude Desktop

Go to Settings → Developer → Edit Config and add:

{
  "mcpServers": {
    "oxinion-finance": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.oxinion.com/finance/mcp"]
    }
  }
}

Restart Claude and the tools will appear.

Local testing with MCP Inspector

Terminal 1:

npm start

Terminal 2:

npx @modelcontextprotocol/inspector@latest

Open the Inspector URL in your browser, set transport to Streamable HTTP, enter http://localhost:8787/finance/mcp, and connect.

Adding Tools

Add tools inside the init() method in src/index.ts:

async init() {
  this.server.registerTool("tool-name", {
    description: "...",
    inputSchema: z.object({ ... }),
  }, async (input) => {
    return { content: [{ type: "text", text: "..." }] };
  });
}
F
license - not found
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/oxinion/oxinion-finance-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server