oxinion-finance-mcp
Allows connecting to Cloudflare AI Playground to test and use MCP tools remotely.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@oxinion-finance-mcpWhat's the current price of Bitcoin?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 startServer runs at http://localhost:8787/finance/mcp.
Related MCP server: Remote MCP Server Authless
Deploy
npx wrangler@latest deployDeploys to finance.oxinion.com/mcp (route configured in wrangler.jsonc).
Connect Claude Code (Recommended)
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/mcpConnect 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 startTerminal 2:
npx @modelcontextprotocol/inspector@latestOpen 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: "..." }] };
});
}This server cannot be installed
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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