MCP Server of MCP Bone
What’s MCP Bone?
MCP Bone is a online service that provides a set of tools for MCP. Home Page On MCP Bone, you can register other MCP Servers, get function calling tools JSON or XML-style prompt text and later call tools easily. Read Usage
This package is a Node.js module that provides a MCP Server connect to MCP Bone. You can use it to connect to MCP Bone and get the tools JSON.
Also, you can use this package as a parser SDK to parse completion text to tool_calls.
Setup
Access Token
Get an Access Token:
- go to https://store.tangshuang.net?scope=mcp-bone
- register an account and log in
- go to https://store.tangshuang.net/product/58/entry?scope=mcp-bone to create a new App
- go to the App’s
Certificatemenu page to create a new certificate - copy the
Access Token
NPX
{
"mcpServers": {
"mcp-bone": {
"command": "npx",
"args": [
"-y",
"mcp-bone"
],
"env": {
"MCP_BONE_ACCESS_TOKEN": ""
}
}
}
}
Parser
import {
extractAndParseToolsToJson,
extractAndParseToolsXmlToJson,
extractAndParseToolsTextToJson,
} from 'mcp-bone';
const tools = extractAndParseToolsTextToJson(text);
const tools = extractAndParseToolsXmlToJson(text);
const tools = extractAndParseToolsToJson(text);
These tools are used after LLM completions whic does not support function calling to parse the text into tools JSON. If the result is an empty array, it means that the LLM did not generate any tools.
MCP Bone
Project Details
- tangshuang/mcp-bone
- mcp-bone
- Last Updated: 4/28/2025
Recomended MCP Servers
An MCP server that provides real-time access to Chainlink's decentralized on-chain price feeds.
A Model Context Protocol (MCP) server for searching barnsworthburning.net.
Linux kernel source tree
This is a Chain-of-Recursive-Thoughts (CORT) MCP server.
An MCP Server implementation that integrates the Brave Search API, providing, Web Search, Local Points of Interest Search,...
MCP server for enabling LLM applications to perform deep research via the MCP protocol
A Model Context Protocol (MCP) server implementation for GitHub integration
MCP for evaluating xpath
Tool that allows you to wait a certain time to continue the execution of an agent.





