- Home
- MCP servers
- MCP Framework Starter
MCP Framework Starter
- typescript
2
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"quantgeekdev-mcp-framework-starter": {
"command": "node",
"args": [
"/absolute/path/to/mcp-framework-starter/dist/index.js"
]
}
}
}You run an MCP server built with the MCP framework to expose tools that you can invoke from an MCP client. It enables structured tool execution, easy extension, and seamless integration with clients like Claude Desktop for interactive workflows.
How to use
You connect to the MCP server using an MCP client and select from the available tools to perform tasks. The server loads tools at startup, so you can extend functionality by adding new tools and rebuilding. To run locally, start the server and then point your MCP client to the local runtime. When using Claude Desktop, you configure the MCP server as a local or published endpoint so the client can invoke tools directly from your environment.
How to install
Prerequisites you need installed on your machine are Node.js and npm. Ensure you have a working environment for building TypeScript projects.
Install dependencies and build the project with the following commands.
# Install dependencies
npm install
# Build the project
npm run build
Claude Desktop configuration and running locally
Configure Claude Desktop to connect to your local MCP server during development. Place the following JSON in the appropriate Claude config location for your operating system.
{
"mcpServers": {
"mcp-framework-starter": {
"command": "node",
"args":["/absolute/path/to/mcp-framework-starter/dist/index.js"]
}
}
}
After publishing
When you publish your MCP server, configure Claude Desktop to use the published CLI entry point. Use the local node-based workflow or the published package entry as shown here.
{
"mcpServers": {
"mcp-framework-starter": {
"command": "npx",
"args": ["mcp-framework-starter"]
}
}
}
Available tools
my_tool
Describes what your tool does